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/es6/re-export-pseudo/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/re-export-pseudo/a.js | import {foo} from './b.js';
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/es6/tree-shaking-export-computed-prop/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-export-computed-prop/b.js | let x = "abc",
y = "def";
let data = {};
data[x] = data[y] = true;
export default function(a) {
return data[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/es6/tree-shaking-export-computed-prop/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-export-computed-prop/c.js | let x = "abc",
y = "def";
let data = {};
data[x] = true;
data[y] = true;
export default function(a) {
return data[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/es6/tree-shaking-export-computed-prop/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-export-computed-prop/a.js | import b from './b.js';
import c from './b.js';
output = [b('abc'), b('x'), c('abc'), 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/es6/codesplit-reexports/src/async.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/codesplit-reexports/src/async.js | import { foo3, bar3 } from "../library";
export default [foo3, bar3];
| 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/es6/codesplit-reexports/src/entry.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/codesplit-reexports/src/entry.js | import { foo, bar } from "../library";
output = import("./async").then(v => [v.default, [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/es6/codesplit-reexports/library/bar2.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/codesplit-reexports/library/bar2.js | export const bar2 = 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/es6/codesplit-reexports/library/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/codesplit-reexports/library/index.js | export { foo } from "./foo";
export * from "./bar";
export { foo2 as foo3 } from "./foo2";
export { bar2 as bar3 } from "./bar2";
export const own = 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/es6/codesplit-reexports/library/bar.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/codesplit-reexports/library/bar.js | export const 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/es6/codesplit-reexports/library/foo.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/codesplit-reexports/library/foo.js | export const 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/es6/codesplit-reexports/library/foo2.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/codesplit-reexports/library/foo2.js | export const foo2 = 20;
| 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/es6/sibling-dependencies/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/sibling-dependencies/b.js | import {a} from './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/es6/sibling-dependencies/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/sibling-dependencies/a.js | export function a() {
return '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/es6/import-missing/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/import-missing/b.js | export const bar = 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/es6/import-missing/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/import-missing/a.js | import {foo} from "./b.js";
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/es6/update-used-symbols-dependency-add/index.1.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add/index.1.js | import {a} from "./library/a.js";
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/es6/update-used-symbols-dependency-add/index.2.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add/index.2.js | import {a} from "./library/a.js";
import {b, d} from "./library/b.js";
output = [a, b, 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/es6/update-used-symbols-dependency-add/index.3.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add/index.3.js | import {b, d} from "./library/b.js";
output = [b, 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/es6/update-used-symbols-dependency-add/library/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add/library/b.js | export {a, b, d} from "./c.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/es6/update-used-symbols-dependency-add/library/d1.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add/library/d1.js | export const a = 123;
export const b = 789;
| 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/es6/update-used-symbols-dependency-add/library/c.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add/library/c.js | export {a,b} from "./d1.js";
export * as d from "./d2.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/es6/update-used-symbols-dependency-add/library/d2.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add/library/d2.js | export const d1 = 1;
export const d2 = 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/es6/update-used-symbols-dependency-add/library/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/update-used-symbols-dependency-add/library/a.js | export {a, b} from "./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/es6/side-effects-false/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false/a.js | import {foo} from 'bar';
output = 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/es6/side-effects-false/node_modules/bar/index.1.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false/node_modules/bar/index.1.js | export {default as foo} from './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/es6/side-effects-false/node_modules/bar/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/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/es6/side-effects-false/node_modules/bar/bar.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false/node_modules/bar/bar.js | sideEffect();
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/es6/side-effects-false/node_modules/bar/foo.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/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/es6/tree-shaking-increment-object/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-increment-object/b.js | let counter = 1;
function unused() {
return {
id: counter++,
};
}
| 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/es6/tree-shaking-increment-object/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/tree-shaking-increment-object/a.js | 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/es6/side-effects/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects/a.js | import {foo} from 'bar';
output = 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/es6/side-effects/node_modules/bar/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects/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/es6/side-effects/node_modules/bar/bar.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects/node_modules/bar/bar.js | sideEffect();
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/es6/side-effects/node_modules/bar/foo.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects/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/es6/shared-bundle-side-effect-duplication/async2.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/shared-bundle-side-effect-duplication/async2.js | import "./v.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/es6/shared-bundle-side-effect-duplication/v.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/shared-bundle-side-effect-duplication/v.js | sideEffect("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/es6/shared-bundle-side-effect-duplication/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/shared-bundle-side-effect-duplication/index.js | output = import("./async1.js").then(() => import("./async2.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/es6/shared-bundle-side-effect-duplication/async1.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/shared-bundle-side-effect-duplication/async1.js | import "./v.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/es6/side-effects-false-wildcards/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-wildcards/a.js | import {foo} from 'bar'
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/es6/side-effects-false-wildcards/node_modules/bar/index.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-wildcards/node_modules/bar/index.js | export * from './a'
export * from './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/es6/side-effects-false-wildcards/node_modules/bar/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-wildcards/node_modules/bar/b.js | sideEffect('bar');
export const bar = '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/es6/side-effects-false-wildcards/node_modules/bar/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/side-effects-false-wildcards/node_modules/bar/a.js | export const 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/es6/export-default-global/b.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/export-default-global/b.js | export default Test;
| 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/es6/export-default-global/a.js | packages/core/integration-tests/test/integration/scope-hoisting/es6/export-default-global/a.js | import b from "./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/live-bindings/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/live-bindings/b.js | var foo = 2;
export default foo;
export {foo, foo as bar};
export function changeFoo(v) {
foo = 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/live-bindings/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/live-bindings/a.js | const b = require('./b');
b.changeFoo(3);
output = b.default + 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/wrap-interop-url-import/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-interop-url-import/b.js | import logo from "url:./data.txt";
export default logo;
| 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-interop-url-import/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-interop-url-import/a.js | function run() {
return require("./b.js");
}
output = run().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/interop-require-es-module-code-split/import.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-es-module-code-split/import.js | import shared from "./shared";
export default shared.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/interop-require-es-module-code-split/main.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-es-module-code-split/main.js | import sharedBundle from './shared';
const importBundle = import('./import');
output = importBundle.then(importValue => importValue.default + ':' + sharedBundle.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/interop-require-es-module-code-split/shared_sub.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-es-module-code-split/shared_sub.js | 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/interop-require-es-module-code-split/shared.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-es-module-code-split/shared.js | const bar = require('./shared_sub');
const exp = { foo: bar }
export default exp;
| 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/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-module/a.js | exports.foo = 2;
output = 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/scope-hoisting/commonjs/non-identifier-symbol-name/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/non-identifier-symbol-name/b.js | module.exports["ab c"] = 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/non-identifier-symbol-name/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/non-identifier-symbol-name/a.js | const x = require("./b.js");
output = x["ab 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/exports-this/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-this/a.js | exports.foo = function() {
exports.bar()
}
exports.bar = function() {
this.baz()
}
exports.baz = function() {
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-extensions/index.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-extensions/index.js | if (typeof require !== 'undefined' && require.extensions) {
require.extensions['.handlebars'] = extension;
require.extensions['.hbs'] = extension;
}
| 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-import-hoist/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-in-function-import-hoist/b.js | output('b');
import './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-import-hoist/c.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-in-function-import-hoist/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-in-function-import-hoist/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-in-function-import-hoist/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/eliminate-exports/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/eliminate-exports/b.js | exports.foo = 2;
exports['bar'] = 3;
exports.setFoo = function (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/eliminate-exports/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/eliminate-exports/a.js | var b = require('./b');
b.setFoo(3);
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/multi-assign/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/multi-assign/a.js | var foo = exports.foo = exports.baz = 2;
exports.bar = 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-in-function-import/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-in-function-import/b.js | import './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-import/c.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-in-function-import/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-in-function-import/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-in-function-import/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-re-export-namespace/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-namespace/b.js | import * as c from './c';
export {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-namespace/c.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-namespace/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-namespace/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-re-export-namespace/a.js | const {c, baz} = require('./b');
output = c.foo + c.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/tree-shaking/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/tree-shaking/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/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/tree-shaking/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/wrap-module-computed/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-module-computed/a.js | exports.foo = 2;
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/require-new/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-new/b.js | module.exports = class {
foo() {
return 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-new/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-new/a.js | output = new (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/empty-module/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/empty-module/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/empty-module/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/empty-module/a.js | output = {
b: 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/interop-require-es-module-code-split-intermediate/import.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-es-module-code-split-intermediate/import.js | import child from './import_child';
export default child;
| 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-code-split-intermediate/import_child.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-es-module-code-split-intermediate/import_child.js | import shared from './shared';
export default shared.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/interop-require-es-module-code-split-intermediate/main.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-es-module-code-split-intermediate/main.js | import mainValue from './main_child';
const importBundle = import('./import');
output = importBundle.then(importValue => importValue.default + ':' + mainValue);
| 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-code-split-intermediate/main_child.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-es-module-code-split-intermediate/main_child.js | import shared from './shared';
export default shared.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/interop-require-es-module-code-split-intermediate/shared_sub.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-es-module-code-split-intermediate/shared_sub.js | 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/interop-require-es-module-code-split-intermediate/shared.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/interop-require-es-module-code-split-intermediate/shared.js | const bar = require('./shared_sub');
const shared = { foo: bar };
export default 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/export-non-object/index.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/export-non-object/index.js | import "./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/export-non-object/other.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/export-non-object/other.js | module.exports = 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/wrap-destructuring-object/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-destructuring-object/b.js | const x = {
a: 4,
b: 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-object/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-destructuring-object/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-css/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-css/a.js | const x = require("./b.css");
output = 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/exports-before-module-exports/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-before-module-exports/b.js | // Assign to both `exports` and `module.exports` in CommonJS.
// Some published packages do this in babel-generated output:
// https://unpkg.com/browse/dom-helpers@3.4.0/class/hasClass.js
exports.foo = 27;
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/exports-before-module-exports/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/exports-before-module-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/re-export-var/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/re-export-var/b.js | import {foo, bar} from './c'
export {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/re-export-var/c.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/re-export-var/c.js | const foo = () => 'foo'
function bar() {
return 'bar'
}
export {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/re-export-var/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/re-export-var/a.js | const {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-optional/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-optional/a.js | try {
output = require('noop')
}
catch(_) {
output = 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-eval/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-eval/b.js | module.exports = 2;
eval('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-eval/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/wrap-eval/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/this-reference-wrapped/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/this-reference-wrapped/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();
eval('this.foobar = 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/this-reference-wrapped/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/this-reference-wrapped/a.js | const b = require('./b');
output = [b.foo, b.bar, b.foobar];
| 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-variable/b.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-named-export-variable/b.js | var foo = 2;
export {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-named-export-variable/a.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-named-export-variable/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-local-assign/in-function.js | packages/core/integration-tests/test/integration/scope-hoisting/commonjs/require-local-assign/in-function.js | function test() {
b = 4;
}
let b = require('./b');
let b2 = require('./b');
output([b, b2]);
test();
output([b, b2]);
| 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.