bpms_site/.svn/pristine/85/8568517cae8485f3f22404e53821e53a728cd5f5.svn-base
2025-11-02 16:38:49 +03:30

20 lines
490 B
Plaintext

// Polyfill crypto() in the Node.js environment
"use strict";
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