Updated the files.
This commit is contained in:
parent
1553e6b971
commit
753967d4f5
23418 changed files with 3784666 additions and 0 deletions
30
my-app/node_modules/webpack-sources/lib/index.js
generated
vendored
Executable file
30
my-app/node_modules/webpack-sources/lib/index.js
generated
vendored
Executable file
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
MIT License http://www.opensource.org/licenses/mit-license.php
|
||||
Author Tobias Koppers @sokra
|
||||
*/
|
||||
|
||||
const defineExport = (name, fn) => {
|
||||
let value;
|
||||
Object.defineProperty(exports, name, {
|
||||
get: () => {
|
||||
if (fn !== undefined) {
|
||||
value = fn();
|
||||
fn = undefined;
|
||||
}
|
||||
return value;
|
||||
},
|
||||
configurable: true
|
||||
});
|
||||
};
|
||||
|
||||
defineExport("Source", () => require("./Source"));
|
||||
|
||||
defineExport("RawSource", () => require("./RawSource"));
|
||||
defineExport("OriginalSource", () => require("./OriginalSource"));
|
||||
defineExport("SourceMapSource", () => require("./SourceMapSource"));
|
||||
defineExport("CachedSource", () => require("./CachedSource"));
|
||||
defineExport("ConcatSource", () => require("./ConcatSource"));
|
||||
defineExport("ReplaceSource", () => require("./ReplaceSource"));
|
||||
defineExport("PrefixSource", () => require("./PrefixSource"));
|
||||
defineExport("SizeOnlySource", () => require("./SizeOnlySource"));
|
||||
defineExport("CompatSource", () => require("./CompatSource"));
|
Loading…
Add table
Add a link
Reference in a new issue