webpack/lib/RuntimeGlobals.js

107 lines
2.0 KiB
JavaScript
Raw Normal View History

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
2018-11-06 02:03:12 +08:00
/**
* the internal require function
*/
exports.require = "__webpack_require__";
/**
* the internal exports object
*/
exports.exports = "__webpack_exports__";
/**
* the internal module object
*/
exports.module = "module";
/**
* the bundle public path
*/
exports.publicPath = "__webpack_require__.p";
/**
* the module id of the entry point
*/
exports.entryModuleId = "__webpack_require__.s";
/**
* the module cache
*/
exports.moduleCache = "__webpack_require__.c";
/**
* the module functions
*/
exports.moduleFactories = "__webpack_require__.m";
/**
* the chunk ensure function
*/
exports.ensureChunk = "__webpack_require__.e";
/**
* the chunk ensure function
*/
exports.ensureChunkHandlers = "__webpack_require__.f";
/**
* the exported property define getter function
*/
exports.definePropertyGetter = "__webpack_require__.d";
/**
* define compatibility on export
*/
exports.makeNamespaceObject = "__webpack_require__.r";
/**
* create a fake namespace object
*/
exports.createFakeNamespaceObject = "__webpack_require__.t";
/**
* compatibility get default export
*/
exports.compatGetDefaultExport = "__webpack_require__.n";
/**
* the webpack hash
*/
exports.getFullHash = "__webpack_require__.h";
/**
* an object containing all installed WebAssembly.Instance export objects keyed by module id
*/
exports.wasmInstances = "__webpack_require__.w";
/**
* the uncaught error handler for the webpack runtime
*/
exports.uncaughtErrorHandler = "__webpack_require__.oe";
/**
* the script nonce
*/
exports.scriptNonce = "__webpack_require__.nc";
/**
* the chunk name of the chunk with the runtime
*/
exports.chunkName = "__webpack_require__.cn";
2018-11-21 18:32:10 +08:00
/**
* the filename of the script part of the chunk
*/
exports.getChunkScriptFilename = "__webpack_require__.u";
/**
* startup signal from runtime
*/
exports.startup = "__webpack_require__.x";