1 2 3 4 5 6 7 8 9 10 11 12 13
var currentNonce; export var setNonce = function (nonce) { currentNonce = nonce; }; export var getNonce = function () { if (currentNonce) { return currentNonce; } if (typeof __webpack_nonce__ !== 'undefined') { return __webpack_nonce__; } return undefined; };