usestd::{cell::RefCell,path::PathBuf};thread_local!{/// Per-thread pre-allocated path that is used to perform operations on paths more quickly.
/// Learned from parcel <https://github.com/parcel-bundler/parcel/blob/a53f8f3ba1025c7ea8653e9719e0a61ef9717079/crates/parcel-resolver/src/cache.rs#L394>
pubstaticSCRATCH_PATH:RefCell<PathBuf>=RefCell::new(PathBuf::with_capacity(256));}