diff options
author | 2023-08-02 16:27:36 -0700 | |
---|---|---|
committer | 2023-08-02 16:27:36 -0700 | |
commit | c2a77cf7ec9de9eadf938046bdf78e58561c8a6d (patch) | |
tree | 0f90f1b323061455875333c9f40592b303585973 /src/js/node/path.ts | |
parent | 7656b4b17e91f15b58eeab8f45b78c416ec6a045 (diff) | |
download | bun-c2a77cf7ec9de9eadf938046bdf78e58561c8a6d.tar.gz bun-c2a77cf7ec9de9eadf938046bdf78e58561c8a6d.tar.zst bun-c2a77cf7ec9de9eadf938046bdf78e58561c8a6d.zip |
Rewrite built-in modules to use CommonJS over ESM (#3814)
* stfdsafsd
sadffdsa
stuff
finish commonjs stuff
asdf
not done but work
not done but work
not done yet but this is how far i am
remove files
lol
update built files
uncomment everything in events lol
export default
stuff
* afdsafsd
* its not perfect but almost done
* okay
* cool
* remove temp file
* finish rebase
* revert settings.json
* a
* ch-ch-ch-ch-changes
* okay
* remove this check in release for now
* sxdcfghnjm,
* lkjhgf
* fmt
* filename can be null
* Update NodeModuleModule.h
* weee
* fmt
---------
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
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; |