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:
Ryan Clements 2023-04-18 04:44:25 -04:00 committed by GitHub
parent 54c31194a5
commit b0b0594767
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 1590 additions and 1948 deletions

View file

@ -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;