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
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/iife-entry-module-with-others/module4.js
test/configCases/module/iife-entry-module-with-others/module4.js
module.exports = typeof Symbol
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/custom-javascript-parser/module3.js
test/configCases/module/custom-javascript-parser/module3.js
module.exports = typeof src_value
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/custom-javascript-parser/test.filter.js
test/configCases/module/custom-javascript-parser/test.filter.js
"use strict"; module.exports = () => { const [major] = process.versions.node.split(".").map(Number); return major >= 20; };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/custom-javascript-parser/index.js
test/configCases/module/custom-javascript-parser/index.js
import { value as value1 } from './module1' const value2 = require('./module2') const value3 = require('./module3') const value4 = require('./module4') let value = 42 let src_value = 43 let src_src_value = 44 let Symbol = 'Symbol' it('inlined module should not leak to non-inlined modules', () => { // The two variabl...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/custom-javascript-parser/test.js
test/configCases/module/custom-javascript-parser/test.js
const fs = require("fs"); const path = require("path"); it("IIFE should present when `avoidEntryIife` is disabled, and avoided when true", () => { // Should work });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/custom-javascript-parser/module1.js
test/configCases/module/custom-javascript-parser/module1.js
let value export { value }
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/custom-javascript-parser/webpack.config.js
test/configCases/module/custom-javascript-parser/webpack.config.js
"use strict"; const meriyah = require("meriyah"); let counter = 0; /** @typedef {import("estree").SourceLocation} SourceLocation */ /** @typedef {import("estree").Program & { start: number, end: number, loc: SourceLocation }} Program */ /** @typedef {import("estree").Comment & { start: number, end: number, loc: Sour...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/custom-javascript-parser/module2.js
test/configCases/module/custom-javascript-parser/module2.js
module.exports = typeof value
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/custom-javascript-parser/module4.js
test/configCases/module/custom-javascript-parser/module4.js
module.exports = typeof Symbol
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/simple/index.js
test/configCases/module/simple/index.js
it("should execute as module", () => { expect( (function () { return !this; })() ).toBe(true); }); it("should be able to load a chunk", async () => { const module = await import("./chunk"); expect(module.default).toBe(42); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/simple/chunk.js
test/configCases/module/simple/chunk.js
export default 42;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/simple/webpack.config.js
test/configCases/module/simple/webpack.config.js
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { experiments: { outputModule: true }, target: "node14" };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/issue-16040/test.filter.js
test/configCases/module/issue-16040/test.filter.js
"use strict"; const supportsRequireInModule = require("../../../helpers/supportsRequireInModule"); module.exports = () => supportsRequireInModule();
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/issue-16040/index.js
test/configCases/module/issue-16040/index.js
import foo from "./foo.js"; import bar from "./bar.js"; it("should not contain non javascript chunk in the main bundle", () => { const fs = require("fs"); const source = fs.readFileSync(__STATS__.outputPath + "/main.mjs", "utf-8"); expect(__STATS__.chunks.some(c => c.names.includes("style"))).toBe(true); // Shoul...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/issue-16040/test.config.js
test/configCases/module/issue-16040/test.config.js
"use strict"; module.exports = { findBundle() { return ["main.mjs", "vendor.mjs", "runtime.mjs"]; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/issue-16040/bar.js
test/configCases/module/issue-16040/bar.js
import { countBy } from "lodash-es"; import "./bar.css"; const result = countBy([6.1, 4.2, 6.3], Math.floor); export default result["6"];
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/issue-16040/foo.js
test/configCases/module/issue-16040/foo.js
import { dropRight } from "lodash-es"; import "./foo.css"; const result = dropRight([10, 20, 30], 2); export default result[0];
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/issue-16040/webpack.config.js
test/configCases/module/issue-16040/webpack.config.js
"use strict"; const MiniCssExtractPlugin = require("mini-css-extract-plugin"); module.exports = { mode: "production", devtool: false, experiments: { outputModule: true }, output: { publicPath: "/", filename: "[name].mjs", chunkFilename: "[name].chunk.js", assetModuleFilename: "[hash][ext][query]", mo...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/externals/index.js
test/configCases/module/externals/index.js
import imported from "./imported.mjs"; import value from "./module"; import { metaUrl } from "./meta"; const localMetaUrl = import.meta.url; it("should allow to use externals in concatenated modules", () => { expect(imported).toBe(42); expect(value).toBe(40); }); it("all bundled files should have same url, when par...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/externals/test.config.js
test/configCases/module/externals/test.config.js
"use strict"; module.exports = { findBundle() { return "./main.mjs"; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/externals/imported.js
test/configCases/module/externals/imported.js
import value from "./module"; export default value + 2;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/externals/webpack.config.js
test/configCases/module/externals/webpack.config.js
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { module: { parser: { javascript: { importMeta: false } } }, entry: { main: "./index.js", imported: { import: "./imported.js", library: { type: "module" } } }, target: "node14", output: { filenam...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/externals/meta.js
test/configCases/module/externals/meta.js
export const metaUrl = import.meta.url;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/externals/module.js
test/configCases/module/externals/module.js
export default 40;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/entries-runtime-single/index.js
test/configCases/module/entries-runtime-single/index.js
it("should compile", () => { expect("common").toBe("common"); }); export default "main";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/entries-runtime-single/test.config.js
test/configCases/module/entries-runtime-single/test.config.js
"use strict"; module.exports = { findBundle() { return ["./main.mjs"]; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/entries-runtime-single/common.js
test/configCases/module/entries-runtime-single/common.js
export default "common";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/entries-runtime-single/webpack.config.js
test/configCases/module/entries-runtime-single/webpack.config.js
"use strict"; const EntryPlugin = require("../../../../").EntryPlugin; /** @type {import("../../../../types").Configuration} */ module.exports = () => ({ devtool: false, mode: "development", entry: { main: { import: "./index.js" } }, output: { filename: "[name].mjs", library: { type: "module" } ...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/entries-runtime-single/separate.js
test/configCases/module/entries-runtime-single/separate.js
import common from "./common"; export default common;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/check-defaults/test.filter.js
test/configCases/module/check-defaults/test.filter.js
"use strict"; module.exports = (config) => !config.cache;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/check-defaults/index.js
test/configCases/module/check-defaults/index.js
it("should compile and run", () => { expect(import.meta.url).toBe(import.meta.url); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/check-defaults/webpack.config.js
test/configCases/module/check-defaults/webpack.config.js
"use strict"; /** @type {import("../../../../").Configuration[]} */ module.exports = [ { experiments: { outputModule: true }, devtool: false, target: "web" }, { experiments: { outputModule: true }, devtool: false, target: "node10" } ];
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/check-defaults/errors.js
test/configCases/module/check-defaults/errors.js
"use strict"; module.exports = [ [/For the selected environment is no default ESM chunk format available/] ];
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/iife-inner-strict/test.js
test/configCases/module/iife-inner-strict/test.js
const fs = require("fs"); const path = require("path"); it("IIFE should present for inner strict", () => { const source = fs.readFileSync(path.join(__dirname, "bundle0.js"), "utf-8"); expect(source).toContain(`This entry needs to be wrapped in an IIFE because it needs to be in strict mode.`); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/iife-inner-strict/test.config.js
test/configCases/module/iife-inner-strict/test.config.js
"use strict"; module.exports = { findBundle() { return ["test.js"]; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/iife-inner-strict/webpack.config.js
test/configCases/module/iife-inner-strict/webpack.config.js
"use strict"; /** @type {import("../../../../").Configuration[]} */ module.exports = [ { entry: ["./index.mjs"], output: { module: false } }, { name: "test-output", entry: "./test.js", output: { filename: "test.js" } } ];
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/split-chunks/index.js
test/configCases/module/split-chunks/index.js
import value from "./separate"; import { test as t } from "external-self"; it("should compile", () => { expect(value).toBe(42); }); it("should circular depend on itself external", () => { expect(test()).toBe(42); expect(t()).toBe(42); }); function test() { return 42; } export { test };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/split-chunks/test.config.js
test/configCases/module/split-chunks/test.config.js
"use strict"; module.exports = { findBundle() { return ["./runtime.mjs", "./separate.mjs", "./main.mjs"]; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/split-chunks/webpack.config.js
test/configCases/module/split-chunks/webpack.config.js
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { output: { filename: "[name].mjs", library: { type: "module" } }, target: ["web", "es2020"], experiments: { outputModule: true }, optimization: { minimize: true, runtimeChunk: "single", splitChunks: { cacheGro...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/split-chunks/separate.js
test/configCases/module/split-chunks/separate.js
export default 42;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/issue-17971/test.filter.js
test/configCases/module/issue-17971/test.filter.js
"use strict"; const supportsRequireInModule = require("../../../helpers/supportsRequireInModule"); module.exports = () => supportsRequireInModule();
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/issue-17971/index.js
test/configCases/module/issue-17971/index.js
import pathModule from "./common.js"; it("should work", () => { expect(typeof pathModule.dirname).toBe("function"); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/issue-17971/common.js
test/configCases/module/issue-17971/common.js
const pathModule = __non_webpack_require__('path'); export default pathModule;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/module/issue-17971/webpack.config.js
test/configCases/module/issue-17971/webpack.config.js
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { devtool: "eval-source-map", target: "node", experiments: { outputModule: true } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/imports-fields/index.js
test/configCases/resolve-merging/imports-fields/index.js
import d1 from "./pkg.mjs"; import d2 from "#internal"; import { d3, d4 } from "lib"; it("imports field to resolve to the same", () => { expect(d2).toBe(d1); expect(d4).toBe(d3); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/imports-fields/webpack.config.js
test/configCases/resolve-merging/imports-fields/webpack.config.js
"use strict"; module.exports = { entry: "./index.js", resolve: { importsFields: ["hash-start", "..."] } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/imports-fields/node_modules/lib/index.js
test/configCases/resolve-merging/imports-fields/node_modules/lib/index.js
export { default as d3 } from "./lib.mjs"; export { default as d4 } from "#internal";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/bbb.js
test/configCases/resolve-merging/override/bbb.js
export { default } from "./package";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/index.js
test/configCases/resolve-merging/override/index.js
import value from "./package"; import aaa from "./aaa"; import bbb from "./bbb"; import ccc from "./ccc"; import ddd from "./ddd"; import { a, b, c, d, e } from "./loader!./loader"; it("should use byDependency defaults", () => { expect(value).toBe("module"); }); it("should override byDependency defaults", () => { e...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/loader.js
test/configCases/resolve-merging/override/loader.js
/** @type {import("../../../../").LoaderDefinition} */ module.exports = async function () { const defaultResolve = this.getResolve({}); const overrideResolve = this.getResolve({ mainFields: [] }); const customKnownResolve = this.getResolve({ dependencyType: "stylesheet" }); const customUnknownResolve = this.g...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/ccc.js
test/configCases/resolve-merging/override/ccc.js
export { default } from "./package";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/aaa.js
test/configCases/resolve-merging/override/aaa.js
export { default } from "./package";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/webpack.config.js
test/configCases/resolve-merging/override/webpack.config.js
"use strict"; module.exports = { resolve: { alias: { byDependency: "ok" }, byDependency: { stylesheet: { conditionNames: ["style", "..."] } } }, module: { rules: [ { test: /aaa/, resolve: { mainFields: [] } }, { test: /bbb/, resolve: { mainFields: ["othe...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/ddd.js
test/configCases/resolve-merging/override/ddd.js
export { default } from "./package";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/node_modules/byDependency.js
test/configCases/resolve-merging/override/node_modules/byDependency.js
module.exports = "wrong";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/node_modules/ok.js
test/configCases/resolve-merging/override/node_modules/ok.js
module.exports = "ok";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/node_modules/package2/import.js
test/configCases/resolve-merging/override/node_modules/package2/import.js
export default "import";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/node_modules/package2/style.js
test/configCases/resolve-merging/override/node_modules/package2/style.js
export default "style";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/node_modules/package2/index.js
test/configCases/resolve-merging/override/node_modules/package2/index.js
export default "index";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/node_modules/package2/default.js
test/configCases/resolve-merging/override/node_modules/package2/default.js
export default "default";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/node_modules/package2/require.js
test/configCases/resolve-merging/override/node_modules/package2/require.js
export default "require";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/package/main.js
test/configCases/resolve-merging/override/package/main.js
export default "main";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/package/index.js
test/configCases/resolve-merging/override/package/index.js
export default "index";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/package/other.js
test/configCases/resolve-merging/override/package/other.js
export default "other";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/resolve-merging/override/package/module.js
test/configCases/resolve-merging/override/package/module.js
export default "module";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/share-plugin-dual-mode/webpack.config.js
test/configCases/sharing/share-plugin-dual-mode/webpack.config.js
"use strict"; const path = require("path"); const { SharePlugin } = require("../../../../").sharing; /** @type {import("../../../../").Configuration} */ module.exports = { context: path.resolve(__dirname, "./cjs"), plugins: [ new SharePlugin({ shared: { lib: {}, transitive_lib: {} } }) ] };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/share-plugin-dual-mode/node_modules/transitive_lib/index.js
test/configCases/sharing/share-plugin-dual-mode/node_modules/transitive_lib/index.js
import cfg from './package.json' with { type: 'json' }; export default `transitive_lib@${cfg.version}`;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/share-plugin-dual-mode/node_modules/lib/index.js
test/configCases/sharing/share-plugin-dual-mode/node_modules/lib/index.js
import cfg from './package.json' with { type: 'json' }; import transitiveDept from 'transitive_lib'; export default `lib@${cfg.version} with ${transitiveDept}`;
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/share-plugin-dual-mode/cjs/index.js
test/configCases/sharing/share-plugin-dual-mode/cjs/index.js
it('should provide own dependency', async () => { expect(await import('lib')).toEqual( expect.objectContaining({ default: 'lib@1.1.1 with transitive_lib@1.1.1', }), ); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-multiple-versions-ignore-warnings/index.js
test/configCases/sharing/consume-multiple-versions-ignore-warnings/index.js
const expectWarning = require("../../../helpers/expectWarningFactory")(); it("should be able to consume different shared module version depending on context with ignored warnings", async () => { __webpack_share_scopes__["default"] = { shared: { "9.9.9": { get: () => () => "shared@9.9.9" }, "1.9.9": { ...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-multiple-versions-ignore-warnings/webpack.config.js
test/configCases/sharing/consume-multiple-versions-ignore-warnings/webpack.config.js
"use strict"; const { ConsumeSharedPlugin } = require("../../../../").sharing; /** @type {import("../../../../").Configuration} */ module.exports = { output: { ignoreBrowserWarnings: true }, plugins: [ new ConsumeSharedPlugin({ consumes: { shared: { import: false, strictVersion: true }, ...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-multiple-versions-ignore-warnings/node_modules/my-module2/index.js
test/configCases/sharing/consume-multiple-versions-ignore-warnings/node_modules/my-module2/index.js
module.exports = require("shared");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-multiple-versions-ignore-warnings/node_modules/my-module/index.js
test/configCases/sharing/consume-multiple-versions-ignore-warnings/node_modules/my-module/index.js
module.exports = require("shared");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-multiple-versions-ignore-warnings/node_modules/my-module4/index.js
test/configCases/sharing/consume-multiple-versions-ignore-warnings/node_modules/my-module4/index.js
module.exports = require("shared");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-multiple-versions-ignore-warnings/node_modules/my-module3/index.js
test/configCases/sharing/consume-multiple-versions-ignore-warnings/node_modules/my-module3/index.js
module.exports = require("shared");
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-module/index.js
test/configCases/sharing/consume-module/index.js
let warnings = []; let oldWarn; beforeEach(done => { oldWarn = console.warn; console.warn = m => warnings.push(m); done(); }); afterEach(done => { expectWarning(); console.warn = oldWarn; done(); }); const expectWarning = regexp => { if (!regexp) { expect(warnings).toEqual([]); } else { expect(warnings)....
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-module/relative1.js
test/configCases/sharing/consume-module/relative1.js
module.exports = "relative1";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-module/relative2.js
test/configCases/sharing/consume-module/relative2.js
module.exports = "relative2";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-module/webpack.config.js
test/configCases/sharing/consume-module/webpack.config.js
"use strict"; const { ConsumeSharedPlugin } = require("../../../../").sharing; /** @type {import("../../../../").Configuration} */ module.exports = { mode: "development", plugins: [ new ConsumeSharedPlugin({ shareScope: "test-scope", consumes: [ "package", "@scoped/package", "prefix/", "./re...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-module/errors.js
test/configCases/sharing/consume-module/errors.js
"use strict"; module.exports = [[/prefix\/deep\/c/]];
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-module/node_modules/strict2.js
test/configCases/sharing/consume-module/node_modules/strict2.js
module.exports = "strict";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-module/node_modules/strict0.js
test/configCases/sharing/consume-module/node_modules/strict0.js
module.exports = "strict";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-module/node_modules/package.js
test/configCases/sharing/consume-module/node_modules/package.js
module.exports = "package";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-module/node_modules/strict1.js
test/configCases/sharing/consume-module/node_modules/strict1.js
module.exports = "strict";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-module/node_modules/singletonWithoutVersion.js
test/configCases/sharing/consume-module/node_modules/singletonWithoutVersion.js
module.exports = "singleton without version";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-module/node_modules/strict3.js
test/configCases/sharing/consume-module/node_modules/strict3.js
module.exports = "strict";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-module/node_modules/strict4.js
test/configCases/sharing/consume-module/node_modules/strict4.js
module.exports = "strict";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-module/node_modules/singleton.js
test/configCases/sharing/consume-module/node_modules/singleton.js
module.exports = "singleton";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-module/node_modules/@scoped/package/index.js
test/configCases/sharing/consume-module/node_modules/@scoped/package/index.js
module.exports = "@scoped/package";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-module/node_modules/prefix/a.js
test/configCases/sharing/consume-module/node_modules/prefix/a.js
module.exports = "a";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/consume-module/node_modules/prefix/deep/b.js
test/configCases/sharing/consume-module/node_modules/prefix/deep/b.js
module.exports = "b";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/provide-module/index.js
test/configCases/sharing/provide-module/index.js
if (Math.random() < 0) { require("package"); } it("should add provided modules to the share scope on init", async () => { expect(__webpack_share_scopes__).toEqual({}); await __webpack_init_sharing__("default"); expect(Object.keys(__webpack_share_scopes__)).toEqual(["default"]); await __webpack_init_sharing__("tes...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/provide-module/test2.js
test/configCases/sharing/provide-module/test2.js
module.exports = "test2";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/provide-module/webpack.config.js
test/configCases/sharing/provide-module/webpack.config.js
"use strict"; const { ProvideSharedPlugin } = require("../../../../").sharing; /** @type {import("../../../../").Configuration} */ module.exports = { plugins: [ new ProvideSharedPlugin({ shareScope: "test-scope", provides: [ "./test1", { "./test2-wrong": { shareKey: "test2", shareSco...
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/provide-module/test1.js
test/configCases/sharing/provide-module/test1.js
module.exports = "test1";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/provide-module/test2-wrong.js
test/configCases/sharing/provide-module/test2-wrong.js
module.exports = "test2-wrong";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/provide-module/node_modules/package/index.js
test/configCases/sharing/provide-module/node_modules/package/index.js
module.exports = "package";
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/provide-shared-with-runtime-chunk/index.js
test/configCases/sharing/provide-shared-with-runtime-chunk/index.js
import x from "x"; it("should work", () => { expect(x).toBe(42); });
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/provide-shared-with-runtime-chunk/test.config.js
test/configCases/sharing/provide-shared-with-runtime-chunk/test.config.js
"use strict"; module.exports = { findBundle() { return ["./runtime.js", "./main.js"]; } };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false
webpack/webpack
https://github.com/webpack/webpack/blob/d2a124db548cad6e84dffd93b502a4e74bfe2b6a/test/configCases/sharing/provide-shared-with-runtime-chunk/webpack.config.js
test/configCases/sharing/provide-shared-with-runtime-chunk/webpack.config.js
"use strict"; const { ProvideSharedPlugin } = require("../../../../").sharing; /** @type {import("../../../../").Configuration} */ module.exports = { output: { filename: "[name].js" }, optimization: { runtimeChunk: "single" }, plugins: [ new ProvideSharedPlugin({ provides: ["x"] }) ] };
javascript
MIT
d2a124db548cad6e84dffd93b502a4e74bfe2b6a
2026-01-04T14:56:49.698101Z
false