securityos/node_modules/next/dist/esm/server/node-polyfill-crypto.js

19 lines
476 B
JavaScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
// 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