Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
20
node_modules/next/dist/server/node-polyfill-crypto.js
generated
vendored
Normal file
20
node_modules/next/dist/server/node-polyfill-crypto.js
generated
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
// 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue