source: imaps-frontend/node_modules/webpack/lib/RuntimeGlobals.js@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago

F4 Finalna Verzija

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