bpms_site/.svn/pristine/88/88afb048e9b111d2be0589986a9dd106982683ee.svn-base
2025-11-02 16:38:49 +03:30

19 lines
476 B
Plaintext

// 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