| 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 | */
|
|---|
| 11 | module.exports.amdDefine = "__webpack_require__.amdD";
|
|---|
| 12 |
|
|---|
| 13 | /**
|
|---|
| 14 | * the AMD options
|
|---|
| 15 | */
|
|---|
| 16 | module.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 | */
|
|---|
| 30 | module.exports.asyncModule = "__webpack_require__.a";
|
|---|
| 31 |
|
|---|
| 32 | /**
|
|---|
| 33 | * The internal symbol that asyncModule is using.
|
|---|
| 34 | */
|
|---|
| 35 | module.exports.asyncModuleDoneSymbol = "__webpack_require__.aD";
|
|---|
| 36 |
|
|---|
| 37 | /**
|
|---|
| 38 | * The internal symbol that asyncModule is using.
|
|---|
| 39 | */
|
|---|
| 40 | module.exports.asyncModuleExportSymbol = "__webpack_require__.aE";
|
|---|
| 41 |
|
|---|
| 42 | /**
|
|---|
| 43 | * the baseURI of current document
|
|---|
| 44 | */
|
|---|
| 45 | module.exports.baseURI = "__webpack_require__.b";
|
|---|
| 46 |
|
|---|
| 47 | /**
|
|---|
| 48 | * global callback functions for installing chunks
|
|---|
| 49 | */
|
|---|
| 50 | module.exports.chunkCallback = "webpackChunk";
|
|---|
| 51 |
|
|---|
| 52 | /**
|
|---|
| 53 | * the chunk name of the chunk with the runtime
|
|---|
| 54 | */
|
|---|
| 55 | module.exports.chunkName = "__webpack_require__.cn";
|
|---|
| 56 |
|
|---|
| 57 | /**
|
|---|
| 58 | * compatibility get default export
|
|---|
| 59 | */
|
|---|
| 60 | module.exports.compatGetDefaultExport = "__webpack_require__.n";
|
|---|
| 61 |
|
|---|
| 62 | /**
|
|---|
| 63 | * compile a wasm module from id and hash, returning WebAssembly.Module
|
|---|
| 64 | */
|
|---|
| 65 | module.exports.compileWasm = "__webpack_require__.vs";
|
|---|
| 66 |
|
|---|
| 67 | /**
|
|---|
| 68 | * create a fake namespace object
|
|---|
| 69 | */
|
|---|
| 70 | module.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 | */
|
|---|
| 77 | module.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 | */
|
|---|
| 84 | module.exports.createScriptUrl = "__webpack_require__.tu";
|
|---|
| 85 |
|
|---|
| 86 | module.exports.cssInjectStyle = "__webpack_require__.is";
|
|---|
| 87 |
|
|---|
| 88 | /**
|
|---|
| 89 | * The current scope when getting a module from a remote
|
|---|
| 90 | */
|
|---|
| 91 | module.exports.currentRemoteGetScope = "__webpack_require__.R";
|
|---|
| 92 |
|
|---|
| 93 | /**
|
|---|
| 94 | * resolve async transitive dependencies for deferred module
|
|---|
| 95 | */
|
|---|
| 96 | module.exports.deferredModuleAsyncTransitiveDependencies =
|
|---|
| 97 | "__webpack_require__.zT";
|
|---|
| 98 |
|
|---|
| 99 | /**
|
|---|
| 100 | * the internal symbol for getting the async transitive dependencies for deferred module
|
|---|
| 101 | */
|
|---|
| 102 | module.exports.deferredModuleAsyncTransitiveDependenciesSymbol =
|
|---|
| 103 | "__webpack_require__.zS";
|
|---|
| 104 |
|
|---|
| 105 | /**
|
|---|
| 106 | * the exported property define getters function
|
|---|
| 107 | */
|
|---|
| 108 | module.exports.definePropertyGetters = "__webpack_require__.d";
|
|---|
| 109 |
|
|---|
| 110 | /**
|
|---|
| 111 | * the chunk ensure function
|
|---|
| 112 | */
|
|---|
| 113 | module.exports.ensureChunk = "__webpack_require__.e";
|
|---|
| 114 |
|
|---|
| 115 | /**
|
|---|
| 116 | * an object with handlers to ensure a chunk
|
|---|
| 117 | */
|
|---|
| 118 | module.exports.ensureChunkHandlers = "__webpack_require__.f";
|
|---|
| 119 |
|
|---|
| 120 | /**
|
|---|
| 121 | * a runtime requirement if ensureChunkHandlers should include loading of chunk needed for entries
|
|---|
| 122 | */
|
|---|
| 123 | module.exports.ensureChunkIncludeEntries =
|
|---|
| 124 | "__webpack_require__.f (include entries)";
|
|---|
| 125 |
|
|---|
| 126 | /**
|
|---|
| 127 | * the module id of the entry point
|
|---|
| 128 | */
|
|---|
| 129 | module.exports.entryModuleId = "__webpack_require__.s";
|
|---|
| 130 |
|
|---|
| 131 | /**
|
|---|
| 132 | * esm module id
|
|---|
| 133 | */
|
|---|
| 134 | module.exports.esmId = "__webpack_esm_id__";
|
|---|
| 135 |
|
|---|
| 136 | /**
|
|---|
| 137 | * esm module ids
|
|---|
| 138 | */
|
|---|
| 139 | module.exports.esmIds = "__webpack_esm_ids__";
|
|---|
| 140 |
|
|---|
| 141 | /**
|
|---|
| 142 | * esm modules
|
|---|
| 143 | */
|
|---|
| 144 | module.exports.esmModules = "__webpack_esm_modules__";
|
|---|
| 145 |
|
|---|
| 146 | /**
|
|---|
| 147 | * esm runtime
|
|---|
| 148 | */
|
|---|
| 149 | module.exports.esmRuntime = "__webpack_esm_runtime__";
|
|---|
| 150 |
|
|---|
| 151 | /**
|
|---|
| 152 | * the internal exports object
|
|---|
| 153 | */
|
|---|
| 154 | module.exports.exports = "__webpack_exports__";
|
|---|
| 155 |
|
|---|
| 156 | /**
|
|---|
| 157 | * method to install a chunk that was loaded somehow
|
|---|
| 158 | * Signature: ({ id, ids, modules, runtime }) => void
|
|---|
| 159 | */
|
|---|
| 160 | module.exports.externalInstallChunk = "__webpack_require__.C";
|
|---|
| 161 |
|
|---|
| 162 | /**
|
|---|
| 163 | * the filename of the css part of the chunk
|
|---|
| 164 | */
|
|---|
| 165 | module.exports.getChunkCssFilename = "__webpack_require__.k";
|
|---|
| 166 |
|
|---|
| 167 | /**
|
|---|
| 168 | * the filename of the script part of the chunk
|
|---|
| 169 | */
|
|---|
| 170 | module.exports.getChunkScriptFilename = "__webpack_require__.u";
|
|---|
| 171 |
|
|---|
| 172 | /**
|
|---|
| 173 | * the filename of the css part of the hot update chunk
|
|---|
| 174 | */
|
|---|
| 175 | module.exports.getChunkUpdateCssFilename = "__webpack_require__.hk";
|
|---|
| 176 |
|
|---|
| 177 | /**
|
|---|
| 178 | * the filename of the script part of the hot update chunk
|
|---|
| 179 | */
|
|---|
| 180 | module.exports.getChunkUpdateScriptFilename = "__webpack_require__.hu";
|
|---|
| 181 |
|
|---|
| 182 | /**
|
|---|
| 183 | * the webpack hash
|
|---|
| 184 | */
|
|---|
| 185 | module.exports.getFullHash = "__webpack_require__.h";
|
|---|
| 186 |
|
|---|
| 187 | /**
|
|---|
| 188 | * function to return webpack's Trusted Types policy
|
|---|
| 189 | * Arguments: () => TrustedTypePolicy
|
|---|
| 190 | */
|
|---|
| 191 | module.exports.getTrustedTypesPolicy = "__webpack_require__.tt";
|
|---|
| 192 |
|
|---|
| 193 | /**
|
|---|
| 194 | * the filename of the HMR manifest
|
|---|
| 195 | */
|
|---|
| 196 | module.exports.getUpdateManifestFilename = "__webpack_require__.hmrF";
|
|---|
| 197 |
|
|---|
| 198 | /**
|
|---|
| 199 | * the global object
|
|---|
| 200 | */
|
|---|
| 201 | module.exports.global = "__webpack_require__.g";
|
|---|
| 202 |
|
|---|
| 203 | /**
|
|---|
| 204 | * harmony module decorator
|
|---|
| 205 | */
|
|---|
| 206 | module.exports.harmonyModuleDecorator = "__webpack_require__.hmd";
|
|---|
| 207 |
|
|---|
| 208 | /**
|
|---|
| 209 | * a flag when a module/chunk/tree has css modules
|
|---|
| 210 | */
|
|---|
| 211 | module.exports.hasCssModules = "has css modules";
|
|---|
| 212 |
|
|---|
| 213 | /**
|
|---|
| 214 | * a flag when a chunk has a fetch priority
|
|---|
| 215 | */
|
|---|
| 216 | module.exports.hasFetchPriority = "has fetch priority";
|
|---|
| 217 |
|
|---|
| 218 | /**
|
|---|
| 219 | * the shorthand for Object.prototype.hasOwnProperty
|
|---|
| 220 | * using of it decreases the compiled bundle size
|
|---|
| 221 | */
|
|---|
| 222 | module.exports.hasOwnProperty = "__webpack_require__.o";
|
|---|
| 223 |
|
|---|
| 224 | /**
|
|---|
| 225 | * function downloading the update manifest
|
|---|
| 226 | */
|
|---|
| 227 | module.exports.hmrDownloadManifest = "__webpack_require__.hmrM";
|
|---|
| 228 |
|
|---|
| 229 | /**
|
|---|
| 230 | * array with handler functions to download chunk updates
|
|---|
| 231 | */
|
|---|
| 232 | module.exports.hmrDownloadUpdateHandlers = "__webpack_require__.hmrC";
|
|---|
| 233 |
|
|---|
| 234 | /**
|
|---|
| 235 | * array with handler functions when a module should be invalidated
|
|---|
| 236 | */
|
|---|
| 237 | module.exports.hmrInvalidateModuleHandlers = "__webpack_require__.hmrI";
|
|---|
| 238 |
|
|---|
| 239 | /**
|
|---|
| 240 | * object with all hmr module data for all modules
|
|---|
| 241 | */
|
|---|
| 242 | module.exports.hmrModuleData = "__webpack_require__.hmrD";
|
|---|
| 243 |
|
|---|
| 244 | /**
|
|---|
| 245 | * the prefix for storing state of runtime modules when hmr is enabled
|
|---|
| 246 | */
|
|---|
| 247 | module.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 | */
|
|---|
| 254 | module.exports.initializeSharing = "__webpack_require__.I";
|
|---|
| 255 |
|
|---|
| 256 | /**
|
|---|
| 257 | * instantiate a wasm instance from module exports object, id, hash and importsObject
|
|---|
| 258 | */
|
|---|
| 259 | module.exports.instantiateWasm = "__webpack_require__.v";
|
|---|
| 260 |
|
|---|
| 261 | /**
|
|---|
| 262 | * interceptor for module executions
|
|---|
| 263 | */
|
|---|
| 264 | module.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 | */
|
|---|
| 272 | module.exports.loadScript = "__webpack_require__.l";
|
|---|
| 273 |
|
|---|
| 274 | /**
|
|---|
| 275 | * make a deferred namespace object
|
|---|
| 276 | */
|
|---|
| 277 | module.exports.makeDeferredNamespaceObject = "__webpack_require__.z";
|
|---|
| 278 |
|
|---|
| 279 | /**
|
|---|
| 280 | * define compatibility on export
|
|---|
| 281 | */
|
|---|
| 282 | module.exports.makeNamespaceObject = "__webpack_require__.r";
|
|---|
| 283 |
|
|---|
| 284 | /**
|
|---|
| 285 | * make a optimized deferred namespace object
|
|---|
| 286 | */
|
|---|
| 287 | module.exports.makeOptimizedDeferredNamespaceObject = "__webpack_require__.zO";
|
|---|
| 288 |
|
|---|
| 289 | /**
|
|---|
| 290 | * the internal module object
|
|---|
| 291 | */
|
|---|
| 292 | module.exports.module = "module";
|
|---|
| 293 |
|
|---|
| 294 | /**
|
|---|
| 295 | * the module cache
|
|---|
| 296 | */
|
|---|
| 297 | module.exports.moduleCache = "__webpack_require__.c";
|
|---|
| 298 |
|
|---|
| 299 | /**
|
|---|
| 300 | * the module functions
|
|---|
| 301 | */
|
|---|
| 302 | module.exports.moduleFactories = "__webpack_require__.m";
|
|---|
| 303 |
|
|---|
| 304 | /**
|
|---|
| 305 | * the module functions, with only write access
|
|---|
| 306 | */
|
|---|
| 307 | module.exports.moduleFactoriesAddOnly = "__webpack_require__.m (add only)";
|
|---|
| 308 |
|
|---|
| 309 | /**
|
|---|
| 310 | * the internal module object
|
|---|
| 311 | */
|
|---|
| 312 | module.exports.moduleId = "module.id";
|
|---|
| 313 |
|
|---|
| 314 | /**
|
|---|
| 315 | * the internal module object
|
|---|
| 316 | */
|
|---|
| 317 | module.exports.moduleLoaded = "module.loaded";
|
|---|
| 318 |
|
|---|
| 319 | /**
|
|---|
| 320 | * node.js module decorator
|
|---|
| 321 | */
|
|---|
| 322 | module.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 | */
|
|---|
| 332 | module.exports.onChunksLoaded = "__webpack_require__.O";
|
|---|
| 333 |
|
|---|
| 334 | /**
|
|---|
| 335 | * the chunk prefetch function
|
|---|
| 336 | */
|
|---|
| 337 | module.exports.prefetchChunk = "__webpack_require__.E";
|
|---|
| 338 |
|
|---|
| 339 | /**
|
|---|
| 340 | * an object with handlers to prefetch a chunk
|
|---|
| 341 | */
|
|---|
| 342 | module.exports.prefetchChunkHandlers = "__webpack_require__.F";
|
|---|
| 343 |
|
|---|
| 344 | /**
|
|---|
| 345 | * the chunk preload function
|
|---|
| 346 | */
|
|---|
| 347 | module.exports.preloadChunk = "__webpack_require__.G";
|
|---|
| 348 |
|
|---|
| 349 | /**
|
|---|
| 350 | * an object with handlers to preload a chunk
|
|---|
| 351 | */
|
|---|
| 352 | module.exports.preloadChunkHandlers = "__webpack_require__.H";
|
|---|
| 353 |
|
|---|
| 354 | /**
|
|---|
| 355 | * the bundle public path
|
|---|
| 356 | */
|
|---|
| 357 | module.exports.publicPath = "__webpack_require__.p";
|
|---|
| 358 |
|
|---|
| 359 | /**
|
|---|
| 360 | * a RelativeURL class when relative URLs are used
|
|---|
| 361 | */
|
|---|
| 362 | module.exports.relativeUrl = "__webpack_require__.U";
|
|---|
| 363 |
|
|---|
| 364 | /**
|
|---|
| 365 | * the internal require function
|
|---|
| 366 | */
|
|---|
| 367 | module.exports.require = "__webpack_require__";
|
|---|
| 368 |
|
|---|
| 369 | /**
|
|---|
| 370 | * access to properties of the internal require function/object
|
|---|
| 371 | */
|
|---|
| 372 | module.exports.requireScope = "__webpack_require__.*";
|
|---|
| 373 |
|
|---|
| 374 | /**
|
|---|
| 375 | * runtime need to return the exports of the last entry module
|
|---|
| 376 | */
|
|---|
| 377 | module.exports.returnExportsFromRuntime = "return-exports-from-runtime";
|
|---|
| 378 |
|
|---|
| 379 | /**
|
|---|
| 380 | * the runtime id of the current runtime
|
|---|
| 381 | */
|
|---|
| 382 | module.exports.runtimeId = "__webpack_require__.j";
|
|---|
| 383 |
|
|---|
| 384 | /**
|
|---|
| 385 | * the script nonce
|
|---|
| 386 | */
|
|---|
| 387 | module.exports.scriptNonce = "__webpack_require__.nc";
|
|---|
| 388 |
|
|---|
| 389 | /**
|
|---|
| 390 | * set .name to "default" for anonymous default exports per ES spec
|
|---|
| 391 | */
|
|---|
| 392 | module.exports.setAnonymousDefaultName = "__webpack_require__.dn";
|
|---|
| 393 |
|
|---|
| 394 | /**
|
|---|
| 395 | * an object with all share scopes
|
|---|
| 396 | */
|
|---|
| 397 | module.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 | */
|
|---|
| 403 | module.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 | */
|
|---|
| 410 | module.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 | */
|
|---|
| 417 | module.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 | */
|
|---|
| 422 | module.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 | */
|
|---|
| 427 | module.exports.startupOnlyBefore = "__webpack_require__.x (only before)";
|
|---|
| 428 |
|
|---|
| 429 | /**
|
|---|
| 430 | * the System polyfill object
|
|---|
| 431 | */
|
|---|
| 432 | module.exports.system = "__webpack_require__.System";
|
|---|
| 433 |
|
|---|
| 434 | /**
|
|---|
| 435 | * the System.register context object
|
|---|
| 436 | */
|
|---|
| 437 | module.exports.systemContext = "__webpack_require__.y";
|
|---|
| 438 |
|
|---|
| 439 | /**
|
|---|
| 440 | * top-level this need to be the exports object
|
|---|
| 441 | */
|
|---|
| 442 | module.exports.thisAsExports = "top-level-this-exports";
|
|---|
| 443 |
|
|---|
| 444 | /**
|
|---|
| 445 | * to binary helper, convert base64 to Uint8Array
|
|---|
| 446 | */
|
|---|
| 447 | module.exports.toBinary = "__webpack_require__.tb";
|
|---|
| 448 |
|
|---|
| 449 | /**
|
|---|
| 450 | * the uncaught error handler for the webpack runtime
|
|---|
| 451 | */
|
|---|
| 452 | module.exports.uncaughtErrorHandler = "__webpack_require__.oe";
|
|---|
| 453 |
|
|---|
| 454 | /**
|
|---|
| 455 | * an object containing all installed WebAssembly.Instance export objects keyed by module id
|
|---|
| 456 | */
|
|---|
| 457 | module.exports.wasmInstances = "__webpack_require__.w";
|
|---|