????
Current Path : C:/inetpub/vhost/qnquyhoach.nextform.vn/api/node_modules/webpack/lib/runtime/ |
Current File : C:/inetpub/vhost/qnquyhoach.nextform.vn/api/node_modules/webpack/lib/runtime/NonceRuntimeModule.js |
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Ivan Kopeykin @vankop */ "use strict"; const RuntimeGlobals = require("../RuntimeGlobals"); const RuntimeModule = require("../RuntimeModule"); class NonceRuntimeModule extends RuntimeModule { constructor() { super("nonce", RuntimeModule.STAGE_ATTACH); } /** * @returns {string | null} runtime code */ generate() { return `${RuntimeGlobals.scriptNonce} = undefined;`; } } module.exports = NonceRuntimeModule;