repo
stringlengths
5
106
file_url
stringlengths
78
301
file_path
stringlengths
4
211
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:56:49
2026-01-05 02:23:25
truncated
bool
2 classes
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-local-assign/basic.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-local-assign/basic.js
let b = require('./b'); let b2 = require('./b'); output([b, b2]); b = 4; output([b, b2]);
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-local-assign/member.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-local-assign/member.js
let b = require('./b').foo; let b2 = require('./b').foo; output([b, b2]); b = 4; output([b, b2]);
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-local-assign/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-local-assign/b.js
export let foo = 2;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-local-assign/destructure.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-local-assign/destructure.js
let {foo} = require('./b'); let {foo: foo2} = require('./b'); output([foo, foo2]); foo = 4; output([foo, foo2]);
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-in-function/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-in-function/b.js
output('b');
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-in-function/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-in-function/a.js
output('a'); function x() { return require('./b'); } output('c'); x();
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/concat-order-globals/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/concat-order-globals/b.js
const {Buffer} = require("buffer"); module.exports = Buffer.from("foobar").toString();
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/concat-order-globals/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/concat-order-globals/a.js
const other = require("./b.js"); output = Buffer.from(other).toString();
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/mutated-non-static-require/index.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/mutated-non-static-require/index.js
let x = require('./other'); let prop = 'fo' + 'o'; x[prop] = 4; let res = require('./other').foo; output = res;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/mutated-non-static-require/other.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/mutated-non-static-require/other.js
exports.foo = 2;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-typeof-require/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-typeof-require/b.js
if (typeof require === "function") { var jSuites = require("./c.js"); } let x = () => { return jSuites + eval("1"); }; module.exports = x;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-typeof-require/c.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-typeof-require/c.js
module.exports = "c";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-typeof-require/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-typeof-require/a.js
const b = require("./b"); output = b();
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/module-require/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/module-require/b.js
module.exports.b = 2;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/module-require/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/module-require/a.js
output = module.require("./b.js");
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/conditional-import-reference/index.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/conditional-import-reference/index.js
const a = require('./a'); if (false) { console.log(a); } output = a;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/conditional-import-reference/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/conditional-import-reference/a.js
module.exports = 'hello';
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-commonjs-hybrid-dynamic/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-commonjs-hybrid-dynamic/b.js
module.exports = {foo: 1};
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-commonjs-hybrid-dynamic/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-commonjs-hybrid-dynamic/a.js
import b from './b'; export const foo = b.foo; // <-- missing default interop export const bar = (() => require('./b').foo)(); output = foo + bar;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/es6-commonjs-hybrid/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/es6-commonjs-hybrid/b.js
export var a = 2; exports.b = 3;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/es6-commonjs-hybrid/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/es6-commonjs-hybrid/a.js
const {a, b} = require('./b'); output = a + b;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/browserify-compat/browserify-bundle.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/browserify-compat/browserify-bundle.js
/* * The following is a browserify-produced umd bundle created with: * `echo "module.exports = 'foo';" | browserify - -s foo | prettier --parser babel` * using browserify@16.5.0 * * Includes the prelude and umd wrapper from browserify. Browserify's MIT * license is reproduced below. * https://github.com/browseri...
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/browserify-compat/index.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/browserify-compat/index.js
output = require('./browserify-bundle');
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-module-obj-literal-require/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-module-obj-literal-require/b.js
const value = require("./c.js"); const obj = { value, }; exports = module.exports = obj.value;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-module-obj-literal-require/c.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-module-obj-literal-require/c.js
module.exports = 1234;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-module-obj-literal-require/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-module-obj-literal-require/a.js
const v = require("./b.js"); output = v;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-aliases/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-aliases/a.js
try { output = require('foo') } catch(_) { output = require('foo-bar') }
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-aliases/node_modules/foo-bar/index.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-aliases/node_modules/foo-bar/index.js
module.exports = 42
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-concat-order/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-concat-order/b.js
sideEffect(2);
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-concat-order/c.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-concat-order/c.js
sideEffect(5);
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-concat-order/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-concat-order/a.js
sideEffect(1); require("./b.js"); sideEffect(3); if (Date.now() > 0) { sideEffect(4); require("./c.js"); sideEffect(6); } sideEffect(7);
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/missing-non-js/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/missing-non-js/a.js
import './index.css'; output = 27;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-expressions/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-expressions/b.js
function before() { sideEffect('before'); return 'before'; } function after() { sideEffect('after'); return 'after'; } output = before() + ' ' + require('./require') + ' ' + after();
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-expressions/require.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-expressions/require.js
sideEffect('require'); module.exports = 'bar';
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-expressions/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-expressions/a.js
let x = (sideEffect('before'), require('./require'), sideEffect('after'));
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/self-reference-default/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/self-reference-default/b.js
exports.default = 2; module.exports = exports['default'];
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/self-reference-default/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/self-reference-default/a.js
import b from './b'; output = b;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/export-assign-scope/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/export-assign-scope/b.js
exports.setValue = function (value) { exports.value = value; }
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/export-assign-scope/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/export-assign-scope/a.js
var b = require('./b'); b.setValue(2); output = b.value;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-execution-order/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-execution-order/b.js
output('b'); require('./c');
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-execution-order/c.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-execution-order/c.js
output('c');
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-execution-order/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-execution-order/a.js
output('a'); require('./b'); output('d');
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-multiple/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-multiple/b.js
exports.foo = function () { return 'foo'; };
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-multiple/c.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-multiple/c.js
exports.bar = function () { return 'bar'; }
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-multiple/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-multiple/a.js
var before = 'before', b = require('./b'), middle = 'middle', c = require('./c'), after = 'after'; output = `${before} ${b.foo()} ${middle} ${c.bar()} ${after}`;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/mutated-exports-mixed-module/index.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/mutated-exports-mixed-module/index.js
const value = require('./value'); value.cjs = value.cjs + ' mutated'; value.esm = value.esm + ' mutated'; output = [value.cjs, value.esm, value];
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/mutated-exports-mixed-module/value.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/mutated-exports-mixed-module/value.js
export const esm = 'ESM'; module.exports.cjs = 'CJS'
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-commonjs-wrapped/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-commonjs-wrapped/b.js
exports.default = 'default'; eval('');
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-commonjs-wrapped/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-commonjs-wrapped/a.js
var b = require('./b'); output = b['default'];
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-default-export-declaration/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-default-export-declaration/b.js
export default function foo() { return 2; }
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-default-export-declaration/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-default-export-declaration/a.js
const foo = require('./b').default; output = foo();
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/mutated-exports-object-importer/index.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/mutated-exports-object-importer/index.js
const value = require('./value'); value.foo = 43; output = [value.foo, value];
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/mutated-exports-object-importer/value.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/mutated-exports-object-importer/value.js
exports.foo = 42;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/self-reference-assignment/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/self-reference-assignment/a.js
var foo; (function (foo) { foo["bar"] = "bar"; })(foo = exports.foo || (exports.foo = {})); output = exports;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-named/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-named/b.js
export {foo} from './c'; export var baz = 1;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-named/c.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-named/c.js
export var foo = 2, bar = 3;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-named/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-named/a.js
const {foo, baz} = require('./b'); output = foo + baz;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/module-exports-self-reference/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/module-exports-self-reference/b.js
module.exports.other = () => 'other'; module.exports.run = () => `Say ${module.exports.other()}`;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/module-exports-self-reference/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/module-exports-self-reference/a.js
const b = require('./b'); output = b.run();
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/this-arrow-function/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/this-arrow-function/b.js
module.exports.other = () => 'other'; module.exports.run = () => `Say ${this.other()}`;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/this-arrow-function/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/this-arrow-function/a.js
const b = require('./b'); output = b.run();
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/globals-polyfills/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/globals-polyfills/b.js
;(function () { module.exports = test function test(data) { if (typeof Buffer === 'function' && typeof Buffer.isBuffer === 'function' && Buffer.isBuffer(data)) { return true; } return false; } })();
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/globals-polyfills/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/globals-polyfills/a.js
const test = require('./b'); output = !test("abc");
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/export-local/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/export-local/b.js
var x = exports.foo = exports.bar = 3;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/export-local/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/export-local/a.js
output = require('./b').foo;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/named-import/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/named-import/b.js
exports.foo = 2;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/named-import/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/named-import/a.js
import {foo} from './b'; output = foo;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/this-reference/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/this-reference/b.js
this.foo = 5; class X { constructor() { this.bar = 2; } x() { this.bar = 2; } } function f() { this.bar = 2; } if (Date.now() > 0) { this.foo += 1; } new f(); new X().x();
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/this-reference/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/this-reference/a.js
const b = require('./b'); output = [b.foo, b.bar];
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-assign/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-assign/b.js
exports.foo = 2;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-assign/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-assign/a.js
require('./b').foo = 4; output = require('./b').foo;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-exclude-default/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-exclude-default/b.js
export * from './c';
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-exclude-default/c.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-exclude-default/c.js
export default 2; export var foo = 3;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-exclude-default/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-exclude-default/a.js
output = require('./b');
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-deps-circular/core.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-deps-circular/core.js
module.exports = {};
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-deps-circular/index.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-deps-circular/index.js
require('./a'); require('./c'); let AWS = require('./core'); output = AWS;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-deps-circular/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-deps-circular/b.js
require('./a');
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-deps-circular/c.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-deps-circular/c.js
function test() { require('./a'); }
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-deps-circular/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-deps-circular/a.js
require('./b'); const AWS = require('./core'); AWS.test = 2;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/keep-local-function-var/b.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/keep-local-function-var/b.js
var root = require('./c'); var freeModule = typeof module == 'object' && module && !module.nodeType && module; module.exports = freeModule ? null : root;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/keep-local-function-var/c.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/keep-local-function-var/c.js
var root = "something else"; module.exports = root;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/keep-local-function-var/a.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/keep-local-function-var/a.js
const foo = require("./b"); let render = function() { let root = "foo"; output = root; }; render();
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-default-interop/index.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-default-interop/index.js
if (Date.now() < 0) { require("./run-cjs.js"); } import("./async.js");
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-default-interop/run-cjs.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-default-interop/run-cjs.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); sideEffect("run1"); exports.default = 123;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-default-interop/async.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-default-interop/async.js
import x from "./shared"; if (Date.now() > 0) { let x = require("./run-interop.js"); sideEffect("async " + x.default); }
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-default-interop/run-interop.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-default-interop/run-interop.js
import x from "./run-cjs.js"; export default "c: " + x;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-default-interop/shared.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-default-interop/shared.js
sideEffect("shared");
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/exports-define.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/exports-define.js
var t = exports; exports.COMMENT_KEYS = undefined; Object.defineProperty(exports, "COMMENT_KEYS", { get() { return 5; } }); output = t.COMMENT_KEYS;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/exports-define-entry.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/exports-define-entry.js
import {COMMENT_KEYS} from './exports-define-imported'; output = COMMENT_KEYS;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/exports-define-imported.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/exports-define-imported.js
exports.COMMENT_KEYS = undefined; Object.defineProperty(exports, "COMMENT_KEYS", { get() { return 5; } });
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/exports-assign-imported.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/exports-assign-imported.js
var t = exports; exports.COMMENT_KEYS = undefined; let v = "COMMENT_KEYS" exports[v] = 5;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/exports-assign.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/exports-assign.js
var t = exports; exports.COMMENT_KEYS = undefined; let v = "COMMENT_KEYS" exports[v] = 5; output = t.COMMENT_KEYS;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/module-exports-define-entry.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/module-exports-define-entry.js
import {COMMENT_KEYS} from './module-exports-define-imported'; output = COMMENT_KEYS;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/module-exports-define.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/module-exports-define.js
var t = module.exports; module.exports.COMMENT_KEYS = undefined; Object.defineProperty(module.exports, "COMMENT_KEYS", { get() { return 5; } }); output = t.COMMENT_KEYS;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/exports-assign-reexport-entry.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/exports-assign-reexport-entry.js
import { COMMENT_KEYS, other } from "./exports-assign-reexport"; output = [COMMENT_KEYS, other.COMMENT_KEYS];
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/module-exports-define-imported.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/module-exports-define-imported.js
module.exports.COMMENT_KEYS = undefined; Object.defineProperty(module.exports, "COMMENT_KEYS", { get() { return 5; } });
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/module-exports-assign-entry.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/module-exports-assign-entry.js
import {COMMENT_KEYS} from './module-exports-assign-imported'; output = COMMENT_KEYS;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/exports-assign-reexport.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/exports-assign-reexport.js
export * from "./exports-assign"; export * as other from "./exports-assign";
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/module-exports-assign-imported.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/module-exports-assign-imported.js
module.exports.COMMENT_KEYS = undefined; let v = "COMMENT_KEYS" module.exports[v] = 5;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false
parcel-bundler/parcel
https://github.com/parcel-bundler/parcel/blob/73f691d67d22482440babb2d1846b7da2160f7cc/packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/exports-assign-entry.js
packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/exports-assign-entry.js
import {COMMENT_KEYS} from './exports-assign-imported'; output = COMMENT_KEYS;
javascript
MIT
73f691d67d22482440babb2d1846b7da2160f7cc
2026-01-04T14:58:42.192224Z
false