You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
494 B
24 lines
494 B
/* |
|
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} runtime code |
|
*/ |
|
generate() { |
|
return `${RuntimeGlobals.scriptNonce} = undefined;`; |
|
} |
|
} |
|
|
|
module.exports = NonceRuntimeModule;
|
|
|