Files
Webklar.com/node_modules/next/dist/esm/server/node-polyfill-crypto.js
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

19 lines
476 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) {
webcrypto = require("node:crypto").webcrypto;
}
return webcrypto;
},
set (value) {
webcrypto = value;
}
});
}
//# sourceMappingURL=node-polyfill-crypto.js.map