UNPKG

6.36 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) => 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 filename of the script part of the chunk
178 */
179exports.getChunkScriptFilename = "__webpack_require__.u";
180
181/**
182 * the filename of the script part of the hot update chunk
183 */
184exports.getChunkUpdateScriptFilename = "__webpack_require__.hu";
185
186/**
187 * startup signal from runtime
188 */
189exports.startup = "__webpack_require__.x";
190
191/**
192 * startup signal from runtime
193 */
194exports.startupNoDefault = "__webpack_require__.x (no default handler)";
195
196/**
197 * method to startup an entrypoint with needed chunks.
198 * Signature: (moduleId: Id, chunkIds: Id[]) => any.
199 * Returns the exports of the module or a Promise
200 */
201exports.startupEntrypoint = "__webpack_require__.X";
202
203/**
204 * method to install a chunk that was loaded somehow
205 * Signature depends on the chunk loading method
206 */
207exports.externalInstallChunk = "__webpack_require__.C";
208
209/**
210 * interceptor for module executions
211 */
212exports.interceptModuleExecution = "__webpack_require__.i";
213
214/**
215 * the global object
216 */
217exports.global = "__webpack_require__.g";
218
219/**
220 * an object with all share scopes
221 */
222exports.shareScopeMap = "__webpack_require__.S";
223
224/**
225 * The sharing init sequence function (only runs once per share scope).
226 * Has one argument, the name of the share scope.
227 * Creates a share scope if not existing
228 */
229exports.initializeSharing = "__webpack_require__.I";
230
231/**
232 * The current scope when getting a module from a remote
233 */
234exports.currentRemoteGetScope = "__webpack_require__.R";
235
236/**
237 * the filename of the HMR manifest
238 */
239exports.getUpdateManifestFilename = "__webpack_require__.hmrF";
240
241/**
242 * function downloading the update manifest
243 */
244exports.hmrDownloadManifest = "__webpack_require__.hmrM";
245
246/**
247 * array with handler functions to download chunk updates
248 */
249exports.hmrDownloadUpdateHandlers = "__webpack_require__.hmrC";
250
251/**
252 * object with all hmr module data for all modules
253 */
254exports.hmrModuleData = "__webpack_require__.hmrD";
255
256/**
257 * array with handler functions when a module should be invalidated
258 */
259exports.hmrInvalidateModuleHandlers = "__webpack_require__.hmrI";
260
261/**
262 * the AMD define function
263 */
264exports.amdDefine = "__webpack_require__.amdD";
265
266/**
267 * the AMD options
268 */
269exports.amdOptions = "__webpack_require__.amdO";
270
271/**
272 * the System polyfill object
273 */
274exports.system = "__webpack_require__.System";
275
276/**
277 * the shorthand for Object.prototype.hasOwnProperty
278 * using of it decreases the compiled bundle size
279 */
280exports.hasOwnProperty = "__webpack_require__.o";
281
282/**
283 * the System.register context object
284 */
285exports.systemContext = "__webpack_require__.y";
286
287/**
288 * the baseURI of current document
289 */
290exports.baseURI = "__webpack_require__.b";