UNPKG

next

Version:

The React Framework

19 lines (18 loc) 476 B
// 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