1 | /*
|
---|
2 | MIT License http://www.opensource.org/licenses/mit-license.php
|
---|
3 | Author Tobias Koppers @sokra
|
---|
4 | */
|
---|
5 |
|
---|
6 | "use strict";
|
---|
7 |
|
---|
8 | /**
|
---|
9 | * the internal require function
|
---|
10 | */
|
---|
11 | exports.require = "__webpack_require__";
|
---|
12 |
|
---|
13 | /**
|
---|
14 | * access to properties of the internal require function/object
|
---|
15 | */
|
---|
16 | exports.requireScope = "__webpack_require__.*";
|
---|
17 |
|
---|
18 | /**
|
---|
19 | * the internal exports object
|
---|
20 | */
|
---|
21 | exports.exports = "__webpack_exports__";
|
---|
22 |
|
---|
23 | /**
|
---|
24 | * top-level this need to be the exports object
|
---|
25 | */
|
---|
26 | exports.thisAsExports = "top-level-this-exports";
|
---|
27 |
|
---|
28 | /**
|
---|
29 | * runtime need to return the exports of the last entry module
|
---|
30 | */
|
---|
31 | exports.returnExportsFromRuntime = "return-exports-from-runtime";
|
---|
32 |
|
---|
33 | /**
|
---|
34 | * the internal module object
|
---|
35 | */
|
---|
36 | exports.module = "module";
|
---|
37 |
|
---|
38 | /**
|
---|
39 | * the internal module object
|
---|
40 | */
|
---|
41 | exports.moduleId = "module.id";
|
---|
42 |
|
---|
43 | /**
|
---|
44 | * the internal module object
|
---|
45 | */
|
---|
46 | exports.moduleLoaded = "module.loaded";
|
---|
47 |
|
---|
48 | /**
|
---|
49 | * the bundle public path
|
---|
50 | */
|
---|
51 | exports.publicPath = "__webpack_require__.p";
|
---|
52 |
|
---|
53 | /**
|
---|
54 | * the module id of the entry point
|
---|
55 | */
|
---|
56 | exports.entryModuleId = "__webpack_require__.s";
|
---|
57 |
|
---|
58 | /**
|
---|
59 | * the module cache
|
---|
60 | */
|
---|
61 | exports.moduleCache = "__webpack_require__.c";
|
---|
62 |
|
---|
63 | /**
|
---|
64 | * the module functions
|
---|
65 | */
|
---|
66 | exports.moduleFactories = "__webpack_require__.m";
|
---|
67 |
|
---|
68 | /**
|
---|
69 | * the module functions, with only write access
|
---|
70 | */
|
---|
71 | exports.moduleFactoriesAddOnly = "__webpack_require__.m (add only)";
|
---|
72 |
|
---|
73 | /**
|
---|
74 | * the chunk ensure function
|
---|
75 | */
|
---|
76 | exports.ensureChunk = "__webpack_require__.e";
|
---|
77 |
|
---|
78 | /**
|
---|
79 | * an object with handlers to ensure a chunk
|
---|
80 | */
|
---|
81 | exports.ensureChunkHandlers = "__webpack_require__.f";
|
---|
82 |
|
---|
83 | /**
|
---|
84 | * a runtime requirement if ensureChunkHandlers should include loading of chunk needed for entries
|
---|
85 | */
|
---|
86 | exports.ensureChunkIncludeEntries = "__webpack_require__.f (include entries)";
|
---|
87 |
|
---|
88 | /**
|
---|
89 | * the chunk prefetch function
|
---|
90 | */
|
---|
91 | exports.prefetchChunk = "__webpack_require__.E";
|
---|
92 |
|
---|
93 | /**
|
---|
94 | * an object with handlers to prefetch a chunk
|
---|
95 | */
|
---|
96 | exports.prefetchChunkHandlers = "__webpack_require__.F";
|
---|
97 |
|
---|
98 | /**
|
---|
99 | * the chunk preload function
|
---|
100 | */
|
---|
101 | exports.preloadChunk = "__webpack_require__.G";
|
---|
102 |
|
---|
103 | /**
|
---|
104 | * an object with handlers to preload a chunk
|
---|
105 | */
|
---|
106 | exports.preloadChunkHandlers = "__webpack_require__.H";
|
---|
107 |
|
---|
108 | /**
|
---|
109 | * the exported property define getters function
|
---|
110 | */
|
---|
111 | exports.definePropertyGetters = "__webpack_require__.d";
|
---|
112 |
|
---|
113 | /**
|
---|
114 | * define compatibility on export
|
---|
115 | */
|
---|
116 | exports.makeNamespaceObject = "__webpack_require__.r";
|
---|
117 |
|
---|
118 | /**
|
---|
119 | * create a fake namespace object
|
---|
120 | */
|
---|
121 | exports.createFakeNamespaceObject = "__webpack_require__.t";
|
---|
122 |
|
---|
123 | /**
|
---|
124 | * compatibility get default export
|
---|
125 | */
|
---|
126 | exports.compatGetDefaultExport = "__webpack_require__.n";
|
---|
127 |
|
---|
128 | /**
|
---|
129 | * harmony module decorator
|
---|
130 | */
|
---|
131 | exports.harmonyModuleDecorator = "__webpack_require__.hmd";
|
---|
132 |
|
---|
133 | /**
|
---|
134 | * node.js module decorator
|
---|
135 | */
|
---|
136 | exports.nodeModuleDecorator = "__webpack_require__.nmd";
|
---|
137 |
|
---|
138 | /**
|
---|
139 | * the webpack hash
|
---|
140 | */
|
---|
141 | exports.getFullHash = "__webpack_require__.h";
|
---|
142 |
|
---|
143 | /**
|
---|
144 | * an object containing all installed WebAssembly.Instance export objects keyed by module id
|
---|
145 | */
|
---|
146 | exports.wasmInstances = "__webpack_require__.w";
|
---|
147 |
|
---|
148 | /**
|
---|
149 | * instantiate a wasm instance from module exports object, id, hash and importsObject
|
---|
150 | */
|
---|
151 | exports.instantiateWasm = "__webpack_require__.v";
|
---|
152 |
|
---|
153 | /**
|
---|
154 | * the uncaught error handler for the webpack runtime
|
---|
155 | */
|
---|
156 | exports.uncaughtErrorHandler = "__webpack_require__.oe";
|
---|
157 |
|
---|
158 | /**
|
---|
159 | * the script nonce
|
---|
160 | */
|
---|
161 | exports.scriptNonce = "__webpack_require__.nc";
|
---|
162 |
|
---|
163 | /**
|
---|
164 | * function to load a script tag.
|
---|
165 | * Arguments: (url: string, done: (event) => void), key?: string | number, chunkId?: string | number) => void
|
---|
166 | * done function is called when loading has finished or timeout occurred.
|
---|
167 | * It will attach to existing script tags with data-webpack == key or src == url.
|
---|
168 | */
|
---|
169 | exports.loadScript = "__webpack_require__.l";
|
---|
170 |
|
---|
171 | /**
|
---|
172 | * function to promote a string to a TrustedScriptURL using webpack's Trusted
|
---|
173 | * Types policy
|
---|
174 | * Arguments: (url: string) => TrustedScriptURL
|
---|
175 | */
|
---|
176 | exports.createScriptUrl = "__webpack_require__.tu";
|
---|
177 |
|
---|
178 | /**
|
---|
179 | * the chunk name of the chunk with the runtime
|
---|
180 | */
|
---|
181 | exports.chunkName = "__webpack_require__.cn";
|
---|
182 |
|
---|
183 | /**
|
---|
184 | * the runtime id of the current runtime
|
---|
185 | */
|
---|
186 | exports.runtimeId = "__webpack_require__.j";
|
---|
187 |
|
---|
188 | /**
|
---|
189 | * the filename of the script part of the chunk
|
---|
190 | */
|
---|
191 | exports.getChunkScriptFilename = "__webpack_require__.u";
|
---|
192 |
|
---|
193 | /**
|
---|
194 | * the filename of the script part of the hot update chunk
|
---|
195 | */
|
---|
196 | exports.getChunkUpdateScriptFilename = "__webpack_require__.hu";
|
---|
197 |
|
---|
198 | /**
|
---|
199 | * startup signal from runtime
|
---|
200 | * This will be called when the runtime chunk has been loaded.
|
---|
201 | */
|
---|
202 | exports.startup = "__webpack_require__.x";
|
---|
203 |
|
---|
204 | /**
|
---|
205 | * @deprecated
|
---|
206 | * creating a default startup function with the entry modules
|
---|
207 | */
|
---|
208 | exports.startupNoDefault = "__webpack_require__.x (no default handler)";
|
---|
209 |
|
---|
210 | /**
|
---|
211 | * startup signal from runtime but only used to add logic after the startup
|
---|
212 | */
|
---|
213 | exports.startupOnlyAfter = "__webpack_require__.x (only after)";
|
---|
214 |
|
---|
215 | /**
|
---|
216 | * startup signal from runtime but only used to add sync logic before the startup
|
---|
217 | */
|
---|
218 | exports.startupOnlyBefore = "__webpack_require__.x (only before)";
|
---|
219 |
|
---|
220 | /**
|
---|
221 | * global callback functions for installing chunks
|
---|
222 | */
|
---|
223 | exports.chunkCallback = "webpackChunk";
|
---|
224 |
|
---|
225 | /**
|
---|
226 | * method to startup an entrypoint with needed chunks.
|
---|
227 | * Signature: (moduleId: Id, chunkIds: Id[]) => any.
|
---|
228 | * Returns the exports of the module or a Promise
|
---|
229 | */
|
---|
230 | exports.startupEntrypoint = "__webpack_require__.X";
|
---|
231 |
|
---|
232 | /**
|
---|
233 | * register deferred code, which will run when certain
|
---|
234 | * chunks are loaded.
|
---|
235 | * Signature: (chunkIds: Id[], fn: () => any, priority: int >= 0 = 0) => any
|
---|
236 | * Returned value will be returned directly when all chunks are already loaded
|
---|
237 | * When (priority & 1) it will wait for all other handlers with lower priority to
|
---|
238 | * be executed before itself is executed
|
---|
239 | */
|
---|
240 | exports.onChunksLoaded = "__webpack_require__.O";
|
---|
241 |
|
---|
242 | /**
|
---|
243 | * method to install a chunk that was loaded somehow
|
---|
244 | * Signature: ({ id, ids, modules, runtime }) => void
|
---|
245 | */
|
---|
246 | exports.externalInstallChunk = "__webpack_require__.C";
|
---|
247 |
|
---|
248 | /**
|
---|
249 | * interceptor for module executions
|
---|
250 | */
|
---|
251 | exports.interceptModuleExecution = "__webpack_require__.i";
|
---|
252 |
|
---|
253 | /**
|
---|
254 | * the global object
|
---|
255 | */
|
---|
256 | exports.global = "__webpack_require__.g";
|
---|
257 |
|
---|
258 | /**
|
---|
259 | * an object with all share scopes
|
---|
260 | */
|
---|
261 | exports.shareScopeMap = "__webpack_require__.S";
|
---|
262 |
|
---|
263 | /**
|
---|
264 | * The sharing init sequence function (only runs once per share scope).
|
---|
265 | * Has one argument, the name of the share scope.
|
---|
266 | * Creates a share scope if not existing
|
---|
267 | */
|
---|
268 | exports.initializeSharing = "__webpack_require__.I";
|
---|
269 |
|
---|
270 | /**
|
---|
271 | * The current scope when getting a module from a remote
|
---|
272 | */
|
---|
273 | exports.currentRemoteGetScope = "__webpack_require__.R";
|
---|
274 |
|
---|
275 | /**
|
---|
276 | * the filename of the HMR manifest
|
---|
277 | */
|
---|
278 | exports.getUpdateManifestFilename = "__webpack_require__.hmrF";
|
---|
279 |
|
---|
280 | /**
|
---|
281 | * function downloading the update manifest
|
---|
282 | */
|
---|
283 | exports.hmrDownloadManifest = "__webpack_require__.hmrM";
|
---|
284 |
|
---|
285 | /**
|
---|
286 | * array with handler functions to download chunk updates
|
---|
287 | */
|
---|
288 | exports.hmrDownloadUpdateHandlers = "__webpack_require__.hmrC";
|
---|
289 |
|
---|
290 | /**
|
---|
291 | * object with all hmr module data for all modules
|
---|
292 | */
|
---|
293 | exports.hmrModuleData = "__webpack_require__.hmrD";
|
---|
294 |
|
---|
295 | /**
|
---|
296 | * array with handler functions when a module should be invalidated
|
---|
297 | */
|
---|
298 | exports.hmrInvalidateModuleHandlers = "__webpack_require__.hmrI";
|
---|
299 |
|
---|
300 | /**
|
---|
301 | * the AMD define function
|
---|
302 | */
|
---|
303 | exports.amdDefine = "__webpack_require__.amdD";
|
---|
304 |
|
---|
305 | /**
|
---|
306 | * the AMD options
|
---|
307 | */
|
---|
308 | exports.amdOptions = "__webpack_require__.amdO";
|
---|
309 |
|
---|
310 | /**
|
---|
311 | * the System polyfill object
|
---|
312 | */
|
---|
313 | exports.system = "__webpack_require__.System";
|
---|
314 |
|
---|
315 | /**
|
---|
316 | * the shorthand for Object.prototype.hasOwnProperty
|
---|
317 | * using of it decreases the compiled bundle size
|
---|
318 | */
|
---|
319 | exports.hasOwnProperty = "__webpack_require__.o";
|
---|
320 |
|
---|
321 | /**
|
---|
322 | * the System.register context object
|
---|
323 | */
|
---|
324 | exports.systemContext = "__webpack_require__.y";
|
---|
325 |
|
---|
326 | /**
|
---|
327 | * the baseURI of current document
|
---|
328 | */
|
---|
329 | exports.baseURI = "__webpack_require__.b";
|
---|
330 |
|
---|
331 | /**
|
---|
332 | * a RelativeURL class when relative URLs are used
|
---|
333 | */
|
---|
334 | exports.relativeUrl = "__webpack_require__.U";
|
---|
335 |
|
---|
336 | /**
|
---|
337 | * Creates an async module. The body function must be a async function.
|
---|
338 | * "module.exports" will be decorated with an AsyncModulePromise.
|
---|
339 | * The body function will be called.
|
---|
340 | * To handle async dependencies correctly do this: "([a, b, c] = await handleDependencies([a, b, c]));".
|
---|
341 | * If "hasAwaitAfterDependencies" is truthy, "handleDependencies()" must be called at the end of the body function.
|
---|
342 | * Signature: function(
|
---|
343 | * module: Module,
|
---|
344 | * body: (handleDependencies: (deps: AsyncModulePromise[]) => Promise<any[]> & () => void,
|
---|
345 | * hasAwaitAfterDependencies?: boolean
|
---|
346 | * ) => void
|
---|
347 | */
|
---|
348 | exports.asyncModule = "__webpack_require__.a";
|
---|