diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-09-28 07:55:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-28 07:55:01 -0400 |
commit | fc739dc5eb2769e4608ccf08d23ca8ff0fcc19c5 (patch) | |
tree | 9c5bca411f4b9a6aea5a190d88217f4925563ad3 /runtime/fs_util.rs | |
parent | b694efb3849c4737e8ad617a9a48d5488e21d5da (diff) |
refactor: use deno_path_util (#25918)
Diffstat (limited to 'runtime/fs_util.rs')
-rw-r--r-- | runtime/fs_util.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/runtime/fs_util.rs b/runtime/fs_util.rs index 15ebafdf6..a858e9770 100644 --- a/runtime/fs_util.rs +++ b/runtime/fs_util.rs @@ -2,12 +2,10 @@ use deno_core::anyhow::Context; use deno_core::error::AnyError; +use deno_path_util::normalize_path; use std::path::Path; use std::path::PathBuf; -pub use deno_core::normalize_path; -pub use deno_permissions::specifier_to_file_path; - #[inline] pub fn resolve_from_cwd(path: &Path) -> Result<PathBuf, AnyError> { if path.is_absolute() { |