mirror of
https://github.com/denoland/deno.git
synced 2025-08-31 15:57:53 +00:00
fix(ext/node): Add missing node:path
exports (#25567)
Apparently `path/posix` and `path/win32` have circular exports. I do not know why. Additionally there's a deprecated function `_makeLong` which is just `toNamespacedPath`
This commit is contained in:
parent
f959297dcd
commit
acd62786c2
5 changed files with 14 additions and 0 deletions
|
@ -478,6 +478,9 @@ export function parse(path: string): ParsedPath {
|
|||
|
||||
return ret;
|
||||
}
|
||||
|
||||
export const _makeLong = toNamespacedPath;
|
||||
|
||||
export default {
|
||||
basename,
|
||||
delimiter,
|
||||
|
@ -492,4 +495,5 @@ export default {
|
|||
resolve,
|
||||
sep,
|
||||
toNamespacedPath,
|
||||
_makeLong,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue