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/exports-access-bailout/module-exports-assign.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-access-bailout/module-exports-assign.js | var t = module.exports;
module.exports.COMMENT_KEYS = undefined;
let v = "COMMENT_KEYS"
module.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/require-renamed-export/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-renamed-export/b.js | var bar = 2;
export {bar as 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-renamed-export/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-renamed-export/a.js | const {foo} = require('./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/stream-module/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/stream-module/a.js | output = require('stream');
| 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-reexport/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-in-function-reexport/b.js | export {x} from './c';
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-reexport/c.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-in-function-reexport/c.js | export var x = 2;
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-in-function-reexport/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-in-function-reexport/a.js | output('a');
function x() {
return require('./b');
}
output('d');
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/require-resolve-excluded/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-resolve-excluded/a.js | module.exports = require.resolve('fs');
| 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-variable/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-default-export-variable/b.js | var foo = 2;
export default 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-default-export-variable/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-default-export-variable/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/wrap-return/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-return/b.js | module.exports = 2;
return;
module.exports = 4;
| 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-return/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-return/a.js | const foo = require('./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/require-re-export-all/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-all/b.js | export * 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-all/c.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-all/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-all/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-all/a.js | const {foo, bar, baz} = require('./b');
output = foo + bar + 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/wrap-destructuring-array/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-destructuring-array/b.js | const x = [1, 2]
const [a, b] = x;
module.exports = [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/wrap-destructuring-array/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-destructuring-array/a.js | (function(){
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/require-member-wrapped/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-member-wrapped/b.js | module.exports = function (self) {
return require('./c').bind(self)
};
| 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-member-wrapped/c.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-member-wrapped/c.js | module.exports = function () {
return {
...this,
bar: 4
};
};
| 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-member-wrapped/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-member-wrapped/a.js | let b = require('./b');
output = b({
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-non-const-export/member.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-non-const-export/member.js | var foo = require('./b').foo;
var setFoo = require('./b').setFoo;
output(foo);
setFoo(3);
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/require-non-const-export/live.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-non-const-export/live.js | var b = require('./b');
output(b.foo);
b.setFoo(3);
output(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-non-const-export/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-non-const-export/b.js | exports.foo = 2;
exports.setFoo = (foo) => {
exports.foo = 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-non-const-export/destructure.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-non-const-export/destructure.js | var {foo, setFoo} = require('./b');
output(foo);
setFoo(3);
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/require-re-export-default/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-default/b.js | export {default as 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-default/c.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-default/c.js | export default 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-re-export-default/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-default/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/interop-require-commonjs/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-commonjs/b.js | exports['default'] = {
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/interop-require-commonjs/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-commonjs/a.js | exports = module.exports = require('./b')['default'];
exports['default'] = exports;
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-circular/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-circular/b.js | module.exports = require('./a').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/require-circular/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-circular/a.js | module.exports.foo = 'foo'
module.exports = require('./b');
output = 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/concat-order/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/concat-order/b.js | "use strict";
var t = require("./a.js");
module.exports = t.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/concat-order/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/concat-order/a.js | "use strict";
module.exports.a = () => 1;
var b = require("./b.js");
output = b + 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/import-namespace/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/import-namespace/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/import-namespace/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/import-namespace/a.js | import * as test from './b';
output = test.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/wrap-module-codesplit/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-module-codesplit/b.js | const x = require("./c.js");
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-module-codesplit/c.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-module-codesplit/c.js | module.exports = 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-module-codesplit/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-module-codesplit/a.js | if (Date.now() < 0) {
let x = require("./c.js");
}
output = import("./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/require-conditional/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-conditional/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-conditional/c.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-conditional/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-conditional/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-conditional/a.js | output('a');
if (b) {
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/module-exports-before-exports/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/module-exports-before-exports/b.js | module.exports = 42;
exports.foo = 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/module-exports-before-exports/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/module-exports-before-exports/a.js | 'use strict';
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/module-exports-default-assignment/index.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/module-exports-default-assignment/index.js | function x() {
require("./b");
}
output = 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/module-exports-default-assignment/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/module-exports-default-assignment/b.js | "use strict";
exports.__esModule = true;
exports.default = function () {
return 'b';
};
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/module-exports-default-assignment/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/module-exports-default-assignment/a.js | import f from "./b";
export var foo = f();
| 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-var-hoisting/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-var-hoisting/b.js | for(var BigIntSupported in [0, 1]){}
for (var i = 0, len = 100; i < len; ++i) {}
if (BigIntSupported) {
var bigIntValue = () => true;
let inner_let = false;
if (inner_let){
throw new Error();
}
}
function testIsHoisted() {
return BigIntSupported && bigIntValue();
}
const f1 = () => {
var f1_var = 0;
};... | 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-var-hoisting/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-var-hoisting/a.js | if (Date.now() > 0) {
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/mutated-exports-object-different/mutates.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/mutated-exports-object-different/mutates.js | const value = require('./value');
value.foo = 43;
| 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-different/index.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/mutated-exports-object-different/index.js | require('./mutates');
const value = require('./value');
output = value.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-different/value.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/mutated-exports-object-different/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/default-import/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/default-import/b.js | module.exports = 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/default-import/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/default-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/require-self/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-self/b.js | const other = require("./b.js");
module.exports.a = 3;
module.exports.b = other.a + 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-self/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-self/a.js | const { b } = require("./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-resolve/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-resolve/b.js | module.exports = 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-resolve/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-resolve/a.js | const foo = require('./b');
output = require.resolve('./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/interop-commonjs-hybrid/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-commonjs-hybrid/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/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-commonjs-hybrid/a.js | import b from './b';
const foo = b.foo;
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/module-object/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/module-object/a.js | output = {
id: module.id,
hot: module.hot,
moduleRequire: module.require,
type: typeof module,
exports: exports,
exportsType: typeof exports,
require: typeof require
};
| 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/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require/b.js | module.exports = 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/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require/a.js | const foo = require('./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/require-default-export-expression/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-default-export-expression/b.js | export default 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-expression/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-default-export-expression/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/define-exports/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/define-exports/a.js | export const foo = 'bar'
export function getExports() {
return exports
}
output = getExports() === exports && getExports().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/tree-shaking-no-unknown-objects/index.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/tree-shaking-no-unknown-objects/index.js | const foo = require('./a');
foo.bar = 42;
output = window.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/tree-shaking-no-unknown-objects/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/tree-shaking-no-unknown-objects/a.js | module.exports = window;
| 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-expression/index.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/mutated-exports-object-expression/index.js | const v = require("./value");
let x = ((v.foo = 3), v[["f", "o", "o"].join("")]);
output = [v, v.foo, 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/mutated-exports-object-expression/value.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/mutated-exports-object-expression/value.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/interop-require-es-module/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-es-module/b.js | export default 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/interop-require-es-module/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-es-module/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/require-named-export-declaration/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-named-export-declaration/b.js | export var 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-named-export-declaration/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-named-export-declaration/a.js | const {foo} = require('./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/exports-self-reference/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-self-reference/b.js | module.exports.other = () => 'other';
module.exports.run = () => `Say ${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/exports-self-reference/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/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/object-pattern/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/object-pattern/b.js | exports.foo = 2;
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/object-pattern/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/object-pattern/a.js | var {foo, bar} = require('./b');
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/wrap-unused/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-unused/b.js | function foo() {
return 1;
}
function bar() {
return 2;
}
exports.foo = foo;
exports.bar = 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-unused/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-unused/a.js | if (Date.now() > 0) {
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/export-order/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/export-order/b.js | exports.a = 2;
export var 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/export-order/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/export-order/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/require-re-export-multiple/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-multiple/b.js | export * 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-multiple/d.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-multiple/d.js | export var d = 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-multiple/c.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-multiple/c.js | export var foo = 2, bar = 3;
export * from './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-re-export-multiple/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-multiple/a.js | const {foo, bar, baz, d} = require('./b');
output = foo + bar + baz + 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/tree-shaking-string/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/tree-shaking-string/b.js | exports['foo'] = 2;
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/tree-shaking-string/c.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/tree-shaking-string/c.js | module.exports['foo'] = 20;
module.exports['bar'] = 30;
| 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/tree-shaking-string/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/tree-shaking-string/a.js | output = [require('./b').foo, require('./c').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/side-effects-false/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/side-effects-false/a.js | output = require('bar').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/side-effects-false/node_modules/bar/index.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/side-effects-false/node_modules/bar/index.js | export {default as foo} from './foo';
export {default as bar} from './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/side-effects-false/node_modules/bar/bar.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/side-effects-false/node_modules/bar/bar.js | export default function bar() {
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/side-effects-false/node_modules/bar/foo.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/side-effects-false/node_modules/bar/foo.js | export default function foo(a) {
return a * 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/non-static-exports/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/non-static-exports/b.js | function foo(e) {
e.foo = 2;
}
foo(exports);
exports.bar = 4;
exports.baz = exports.bar + 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/non-static-exports/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/non-static-exports/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/worker-shared/index.js | packages/core/integration-tests/test/integration/worker-shared/index.js | import _ from 'lodash';
new Worker(new URL('worker-a.js', import.meta.url), {type: 'module'});
| 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/worker-shared/worker-b.js | packages/core/integration-tests/test/integration/worker-shared/worker-b.js | import _ from 'lodash'
console.log(_);
| 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/worker-shared/worker-a.js | packages/core/integration-tests/test/integration/worker-shared/worker-a.js | import _ from 'lodash'
console.log(_);
new Worker(new URL('worker-b.js', import.meta.url), {type: 'module'})
| 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/optional-dep/index.js | packages/core/integration-tests/test/integration/optional-dep/index.js | try {
require('optional-dep');
} catch (err) {
module.exports = err;
}
| 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/swc-helpers/index.js | packages/core/integration-tests/test/integration/swc-helpers/index.js | (async () => {
console.log(await Promise.resolve(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/elm/index.js | packages/core/integration-tests/test/integration/elm/index.js | var local = require('./src/Main.elm');
module.exports = function () {
return local;
}; | javascript | MIT | 73f691d67d22482440babb2d1846b7da2160f7cc | 2026-01-04T14:58:42.192224Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.