diff options
author | 2021-09-12 23:40:12 -0700 | |
---|---|---|
committer | 2021-09-12 23:40:12 -0700 | |
commit | 359df89fe3cd3479906ba49054086938947242bc (patch) | |
tree | c6e9f81b10cfb0b5e97dc7aed0898b27ab4a3fe7 /src/runtime.js | |
parent | dca47a565e8960371dd623e978bd952c1b50048d (diff) | |
download | bun-359df89fe3cd3479906ba49054086938947242bc.tar.gz bun-359df89fe3cd3479906ba49054086938947242bc.tar.zst bun-359df89fe3cd3479906ba49054086938947242bc.zip |
Fix "browser" map resolution, _almost_ fix symbol collisions, cache absolute paths for file entries
Diffstat (limited to 'src/runtime.js')
-rw-r--r-- | src/runtime.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime.js b/src/runtime.js index 2bcbdacc5..e2fc4e681 100644 --- a/src/runtime.js +++ b/src/runtime.js @@ -127,7 +127,7 @@ export var __require = (namespace) => { return namespace; // // is it an ESM module record? // if (namespaceType === "object") return namespace; - // // is it a CommonJS module? + // // is it a CommonJS module? // // i have no idea what it is so i'm just going to try stuff and pray // var entry = require_cache.get(namespace); |