brk_rolldown_std_utils/
lib.rs

1//! Only utils/extensions for the rust std library.
2
3mod option_ext;
4mod path_buf_ext;
5mod path_ext;
6mod pretty_type_name;
7
8pub use crate::{
9  option_ext::OptionExt,
10  path_buf_ext::PathBufExt,
11  path_ext::{PathExt, representative_file_name_for_preserve_modules},
12  pretty_type_name::pretty_type_name,
13};