source: frontend/node_modules/webpack/lib/RuntimeGlobals.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 11.2 KB
Line 
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 AMD define function
10 */
11module.exports.amdDefine = "__webpack_require__.amdD";
12
13/**
14 * the AMD options
15 */
16module.exports.amdOptions = "__webpack_require__.amdO";
17
18/**
19 * Creates an async module. The body function must be a async function.
20 * "module.exports" will be decorated with an AsyncModulePromise.
21 * The body function will be called.
22 * To handle async dependencies correctly do this: "([a, b, c] = await handleDependencies([a, b, c]));".
23 * If "hasAwaitAfterDependencies" is truthy, "handleDependencies()" must be called at the end of the body function.
24 * Signature: function(
25 * module: Module,
26 * body: (handleDependencies: (deps: AsyncModulePromise[]) => Promise<any[]> & () => void,
27 * hasAwaitAfterDependencies?: boolean
28 * ) => void
29 */
30module.exports.asyncModule = "__webpack_require__.a";
31
32/**
33 * The internal symbol that asyncModule is using.
34 */
35module.exports.asyncModuleDoneSymbol = "__webpack_require__.aD";
36
37/**
38 * The internal symbol that asyncModule is using.
39 */
40module.exports.asyncModuleExportSymbol = "__webpack_require__.aE";
41
42/**
43 * the baseURI of current document
44 */
45module.exports.baseURI = "__webpack_require__.b";
46
47/**
48 * global callback functions for installing chunks
49 */
50module.exports.chunkCallback = "webpackChunk";
51
52/**
53 * the chunk name of the chunk with the runtime
54 */
55module.exports.chunkName = "__webpack_require__.cn";
56
57/**
58 * compatibility get default export
59 */
60module.exports.compatGetDefaultExport = "__webpack_require__.n";
61
62/**
63 * compile a wasm module from id and hash, returning WebAssembly.Module
64 */
65module.exports.compileWasm = "__webpack_require__.vs";
66
67/**
68 * create a fake namespace object
69 */
70module.exports.createFakeNamespaceObject = "__webpack_require__.t";
71
72/**
73 * function to promote a string to a TrustedScript using webpack's Trusted
74 * Types policy
75 * Arguments: (script: string) => TrustedScript
76 */
77module.exports.createScript = "__webpack_require__.ts";
78
79/**
80 * function to promote a string to a TrustedScriptURL using webpack's Trusted
81 * Types policy
82 * Arguments: (url: string) => TrustedScriptURL
83 */
84module.exports.createScriptUrl = "__webpack_require__.tu";
85
86module.exports.cssInjectStyle = "__webpack_require__.is";
87
88/**
89 * The current scope when getting a module from a remote
90 */
91module.exports.currentRemoteGetScope = "__webpack_require__.R";
92
93/**
94 * resolve async transitive dependencies for deferred module
95 */
96module.exports.deferredModuleAsyncTransitiveDependencies =
97 "__webpack_require__.zT";
98
99/**
100 * the internal symbol for getting the async transitive dependencies for deferred module
101 */
102module.exports.deferredModuleAsyncTransitiveDependenciesSymbol =
103 "__webpack_require__.zS";
104
105/**
106 * the exported property define getters function
107 */
108module.exports.definePropertyGetters = "__webpack_require__.d";
109
110/**
111 * the chunk ensure function
112 */
113module.exports.ensureChunk = "__webpack_require__.e";
114
115/**
116 * an object with handlers to ensure a chunk
117 */
118module.exports.ensureChunkHandlers = "__webpack_require__.f";
119
120/**
121 * a runtime requirement if ensureChunkHandlers should include loading of chunk needed for entries
122 */
123module.exports.ensureChunkIncludeEntries =
124 "__webpack_require__.f (include entries)";
125
126/**
127 * the module id of the entry point
128 */
129module.exports.entryModuleId = "__webpack_require__.s";
130
131/**
132 * esm module id
133 */
134module.exports.esmId = "__webpack_esm_id__";
135
136/**
137 * esm module ids
138 */
139module.exports.esmIds = "__webpack_esm_ids__";
140
141/**
142 * esm modules
143 */
144module.exports.esmModules = "__webpack_esm_modules__";
145
146/**
147 * esm runtime
148 */
149module.exports.esmRuntime = "__webpack_esm_runtime__";
150
151/**
152 * the internal exports object
153 */
154module.exports.exports = "__webpack_exports__";
155
156/**
157 * method to install a chunk that was loaded somehow
158 * Signature: ({ id, ids, modules, runtime }) => void
159 */
160module.exports.externalInstallChunk = "__webpack_require__.C";
161
162/**
163 * the filename of the css part of the chunk
164 */
165module.exports.getChunkCssFilename = "__webpack_require__.k";
166
167/**
168 * the filename of the script part of the chunk
169 */
170module.exports.getChunkScriptFilename = "__webpack_require__.u";
171
172/**
173 * the filename of the css part of the hot update chunk
174 */
175module.exports.getChunkUpdateCssFilename = "__webpack_require__.hk";
176
177/**
178 * the filename of the script part of the hot update chunk
179 */
180module.exports.getChunkUpdateScriptFilename = "__webpack_require__.hu";
181
182/**
183 * the webpack hash
184 */
185module.exports.getFullHash = "__webpack_require__.h";
186
187/**
188 * function to return webpack's Trusted Types policy
189 * Arguments: () => TrustedTypePolicy
190 */
191module.exports.getTrustedTypesPolicy = "__webpack_require__.tt";
192
193/**
194 * the filename of the HMR manifest
195 */
196module.exports.getUpdateManifestFilename = "__webpack_require__.hmrF";
197
198/**
199 * the global object
200 */
201module.exports.global = "__webpack_require__.g";
202
203/**
204 * harmony module decorator
205 */
206module.exports.harmonyModuleDecorator = "__webpack_require__.hmd";
207
208/**
209 * a flag when a module/chunk/tree has css modules
210 */
211module.exports.hasCssModules = "has css modules";
212
213/**
214 * a flag when a chunk has a fetch priority
215 */
216module.exports.hasFetchPriority = "has fetch priority";
217
218/**
219 * the shorthand for Object.prototype.hasOwnProperty
220 * using of it decreases the compiled bundle size
221 */
222module.exports.hasOwnProperty = "__webpack_require__.o";
223
224/**
225 * function downloading the update manifest
226 */
227module.exports.hmrDownloadManifest = "__webpack_require__.hmrM";
228
229/**
230 * array with handler functions to download chunk updates
231 */
232module.exports.hmrDownloadUpdateHandlers = "__webpack_require__.hmrC";
233
234/**
235 * array with handler functions when a module should be invalidated
236 */
237module.exports.hmrInvalidateModuleHandlers = "__webpack_require__.hmrI";
238
239/**
240 * object with all hmr module data for all modules
241 */
242module.exports.hmrModuleData = "__webpack_require__.hmrD";
243
244/**
245 * the prefix for storing state of runtime modules when hmr is enabled
246 */
247module.exports.hmrRuntimeStatePrefix = "__webpack_require__.hmrS";
248
249/**
250 * The sharing init sequence function (only runs once per share scope).
251 * Has one argument, the name of the share scope.
252 * Creates a share scope if not existing
253 */
254module.exports.initializeSharing = "__webpack_require__.I";
255
256/**
257 * instantiate a wasm instance from module exports object, id, hash and importsObject
258 */
259module.exports.instantiateWasm = "__webpack_require__.v";
260
261/**
262 * interceptor for module executions
263 */
264module.exports.interceptModuleExecution = "__webpack_require__.i";
265
266/**
267 * function to load a script tag.
268 * Arguments: (url: string, done: (event) => void), key?: string | number, chunkId?: string | number) => void
269 * done function is called when loading has finished or timeout occurred.
270 * It will attach to existing script tags with data-webpack == uniqueName + ":" + key or src == url.
271 */
272module.exports.loadScript = "__webpack_require__.l";
273
274/**
275 * make a deferred namespace object
276 */
277module.exports.makeDeferredNamespaceObject = "__webpack_require__.z";
278
279/**
280 * define compatibility on export
281 */
282module.exports.makeNamespaceObject = "__webpack_require__.r";
283
284/**
285 * make a optimized deferred namespace object
286 */
287module.exports.makeOptimizedDeferredNamespaceObject = "__webpack_require__.zO";
288
289/**
290 * the internal module object
291 */
292module.exports.module = "module";
293
294/**
295 * the module cache
296 */
297module.exports.moduleCache = "__webpack_require__.c";
298
299/**
300 * the module functions
301 */
302module.exports.moduleFactories = "__webpack_require__.m";
303
304/**
305 * the module functions, with only write access
306 */
307module.exports.moduleFactoriesAddOnly = "__webpack_require__.m (add only)";
308
309/**
310 * the internal module object
311 */
312module.exports.moduleId = "module.id";
313
314/**
315 * the internal module object
316 */
317module.exports.moduleLoaded = "module.loaded";
318
319/**
320 * node.js module decorator
321 */
322module.exports.nodeModuleDecorator = "__webpack_require__.nmd";
323
324/**
325 * register deferred code, which will run when certain
326 * chunks are loaded.
327 * Signature: (chunkIds: Id[], fn: () => any, priority: int >= 0 = 0) => any
328 * Returned value will be returned directly when all chunks are already loaded
329 * When (priority & 1) it will wait for all other handlers with lower priority to
330 * be executed before itself is executed
331 */
332module.exports.onChunksLoaded = "__webpack_require__.O";
333
334/**
335 * the chunk prefetch function
336 */
337module.exports.prefetchChunk = "__webpack_require__.E";
338
339/**
340 * an object with handlers to prefetch a chunk
341 */
342module.exports.prefetchChunkHandlers = "__webpack_require__.F";
343
344/**
345 * the chunk preload function
346 */
347module.exports.preloadChunk = "__webpack_require__.G";
348
349/**
350 * an object with handlers to preload a chunk
351 */
352module.exports.preloadChunkHandlers = "__webpack_require__.H";
353
354/**
355 * the bundle public path
356 */
357module.exports.publicPath = "__webpack_require__.p";
358
359/**
360 * a RelativeURL class when relative URLs are used
361 */
362module.exports.relativeUrl = "__webpack_require__.U";
363
364/**
365 * the internal require function
366 */
367module.exports.require = "__webpack_require__";
368
369/**
370 * access to properties of the internal require function/object
371 */
372module.exports.requireScope = "__webpack_require__.*";
373
374/**
375 * runtime need to return the exports of the last entry module
376 */
377module.exports.returnExportsFromRuntime = "return-exports-from-runtime";
378
379/**
380 * the runtime id of the current runtime
381 */
382module.exports.runtimeId = "__webpack_require__.j";
383
384/**
385 * the script nonce
386 */
387module.exports.scriptNonce = "__webpack_require__.nc";
388
389/**
390 * set .name to "default" for anonymous default exports per ES spec
391 */
392module.exports.setAnonymousDefaultName = "__webpack_require__.dn";
393
394/**
395 * an object with all share scopes
396 */
397module.exports.shareScopeMap = "__webpack_require__.S";
398
399/**
400 * startup signal from runtime
401 * This will be called when the runtime chunk has been loaded.
402 */
403module.exports.startup = "__webpack_require__.x";
404
405/**
406 * method to startup an entrypoint with needed chunks.
407 * Signature: (moduleId: Id, chunkIds: Id[]) => any.
408 * Returns the exports of the module or a Promise
409 */
410module.exports.startupEntrypoint = "__webpack_require__.X";
411
412/**
413 * Describes how this item operation behaves.
414 * @deprecated
415 * creating a default startup function with the entry modules
416 */
417module.exports.startupNoDefault = "__webpack_require__.x (no default handler)";
418
419/**
420 * startup signal from runtime but only used to add logic after the startup
421 */
422module.exports.startupOnlyAfter = "__webpack_require__.x (only after)";
423
424/**
425 * startup signal from runtime but only used to add sync logic before the startup
426 */
427module.exports.startupOnlyBefore = "__webpack_require__.x (only before)";
428
429/**
430 * the System polyfill object
431 */
432module.exports.system = "__webpack_require__.System";
433
434/**
435 * the System.register context object
436 */
437module.exports.systemContext = "__webpack_require__.y";
438
439/**
440 * top-level this need to be the exports object
441 */
442module.exports.thisAsExports = "top-level-this-exports";
443
444/**
445 * to binary helper, convert base64 to Uint8Array
446 */
447module.exports.toBinary = "__webpack_require__.tb";
448
449/**
450 * the uncaught error handler for the webpack runtime
451 */
452module.exports.uncaughtErrorHandler = "__webpack_require__.oe";
453
454/**
455 * an object containing all installed WebAssembly.Instance export objects keyed by module id
456 */
457module.exports.wasmInstances = "__webpack_require__.w";
Note: See TracBrowser for help on using the repository browser.