mirror of
https://github.com/denoland/deno.git
synced 2025-08-31 15:57:53 +00:00
fix(path): Remove non node symbols (#18630)
- preserve referential invariants (e.g. path.posix === posix) - remove glob and separator exports - save removal of fromFileUrl and toFileUrl for a different PR as that refactor is more involved - addresses #18177
This commit is contained in:
parent
54c31194a5
commit
b0b0594767
8 changed files with 1590 additions and 1948 deletions
|
@ -1,4 +1,4 @@
|
|||
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
||||
export * from "ext:deno_node/path/mod.ts";
|
||||
import * as m from "ext:deno_node/path/mod.ts";
|
||||
export default { ...m };
|
||||
import m from "ext:deno_node/path/mod.ts";
|
||||
export default m;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue