UNPKG

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