Files
novarix.uk/node_modules/next/dist/esm/server/node-polyfill-crypto.js
T
Kismet Hasanaj 39a8a128be including-modules
2026-05-03 00:14:08 +02:00

20 lines
544 B
JavaScript

// Polyfill crypto() in the Node.js environment
if (!global.crypto) {
let webcrypto;
Object.defineProperty(global, 'crypto', {
enumerable: false,
configurable: true,
get () {
if (!webcrypto) {
// @ts-expect-error -- TODO: Is this actually safe?
webcrypto = require('node:crypto').webcrypto;
}
return webcrypto;
},
set (value) {
webcrypto = value;
}
});
}
//# sourceMappingURL=node-polyfill-crypto.js.map