Initial commit

This commit is contained in:
Ammaar Reshi
2025-01-04 14:06:53 +00:00
parent 7082408604
commit d6025af146
23760 changed files with 3299690 additions and 0 deletions

2
node_modules/get-nonce/dist/es2015/index.d.ts generated vendored Normal file
View File

@ -0,0 +1,2 @@
export declare const setNonce: (nonce: string) => void;
export declare const getNonce: () => string | undefined;

13
node_modules/get-nonce/dist/es2015/index.js generated vendored Normal file
View File

@ -0,0 +1,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;
};

2
node_modules/get-nonce/dist/es5/index.d.ts generated vendored Normal file
View File

@ -0,0 +1,2 @@
export declare const setNonce: (nonce: string) => void;
export declare const getNonce: () => string | undefined;

15
node_modules/get-nonce/dist/es5/index.js generated vendored Normal file
View File

@ -0,0 +1,15 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var currentNonce;
exports.setNonce = function (nonce) {
currentNonce = nonce;
};
exports.getNonce = function () {
if (currentNonce) {
return currentNonce;
}
if (typeof __webpack_nonce__ !== 'undefined') {
return __webpack_nonce__;
}
return undefined;
};