rolldown_std_utils 1.2.0

Standard library utilities for Rolldown
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Only utils/extensions for the rust std library.

mod option_ext;
mod path_buf_ext;
mod path_ext;
mod pretty_type_name;

pub use crate::{
  option_ext::OptionExt,
  path_buf_ext::PathBufExt,
  path_ext::{
    PathExt, absolute_path_to_relative_slash, absolutize_path_buf, path_buf_to_slash,
    relative_path_as_js_specifier, relative_path_to_slash,
    representative_file_name_for_preserve_modules, strip_path_prefix_to_slash,
  },
  pretty_type_name::pretty_type_name,
};