diff options
Diffstat (limited to 'src/js/node/path.ts')
-rw-r--r-- | src/js/node/path.ts | 54 |
1 files changed, 18 insertions, 36 deletions
diff --git a/src/js/node/path.ts b/src/js/node/path.ts index 7c20d520b..ba7977740 100644 --- a/src/js/node/path.ts +++ b/src/js/node/path.ts @@ -1,49 +1,31 @@ // Hardcoded module "node:path" -export const createModule = obj => Object.assign(Object.create(null), obj); function bound(obj) { - var result = createModule({ - basename: obj.basename.bind(obj), + const toNamespacedPath = obj.toNamespacedPath.bind(obj); + const result = { + resolve: obj.resolve.bind(obj), + normalize: obj.normalize.bind(obj), + isAbsolute: obj.isAbsolute.bind(obj), + join: obj.join.bind(obj), + relative: obj.relative.bind(obj), + toNamespacedPath, dirname: obj.dirname.bind(obj), + basename: obj.basename.bind(obj), extname: obj.extname.bind(obj), format: obj.format.bind(obj), - isAbsolute: obj.isAbsolute.bind(obj), - join: obj.join.bind(obj), - normalize: obj.normalize.bind(obj), parse: obj.parse.bind(obj), - relative: obj.relative.bind(obj), - resolve: obj.resolve.bind(obj), - toNamespacedPath: obj.toNamespacedPath.bind(obj), sep: obj.sep, delimiter: obj.delimiter, - }); - result.default = result; + win32: undefined, + posix: undefined, + _makeLong: toNamespacedPath, + }; return result; } -var path = bound(Bun._Path()); - -export var posix = bound(Bun._Path(false)); -export var win32 = bound(Bun._Path(true)); -path.win32 = win32; -path.posix = posix; +const posix: any = bound(Bun._Path(false)); +const win32: any = bound(Bun._Path(true)); -export var { - basename, - dirname, - extname, - format, - isAbsolute, - join, - normalize, - parse, - relative, - resolve, - toNamespacedPath, - sep, - delimiter, - __esModule, -} = path; +posix.win32 = win32.win32 = win32; +posix.posix = win32.posix = posix; -path[Symbol.for("CommonJS")] = 0; -path.__esModule = true; -export default path; +export default process.platform === "win32" ? win32 : posix; |