Initial commit
This commit is contained in:
19
frontend/webapp/node_modules/next/dist/esm/server/node-polyfill-crypto.js
generated
vendored
Normal file
19
frontend/webapp/node_modules/next/dist/esm/server/node-polyfill-crypto.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
// Polyfill crypto() in the Node.js environment
|
||||
if (!global.crypto) {
|
||||
let webcrypto;
|
||||
Object.defineProperty(global, 'crypto', {
|
||||
enumerable: false,
|
||||
configurable: true,
|
||||
get () {
|
||||
if (!webcrypto) {
|
||||
webcrypto = require('node:crypto').webcrypto;
|
||||
}
|
||||
return webcrypto;
|
||||
},
|
||||
set (value) {
|
||||
webcrypto = value;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
//# sourceMappingURL=node-polyfill-crypto.js.map
|
||||
Reference in New Issue
Block a user