mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
b0b0594767
- 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
4 lines
179 B
TypeScript
4 lines
179 B
TypeScript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
export * from "ext:deno_node/path/mod.ts";
|
|
import m from "ext:deno_node/path/mod.ts";
|
|
export default m;
|