full site update
This commit is contained in:
27
node_modules/uncrypto/dist/crypto.node.cjs
generated
vendored
Normal file
27
node_modules/uncrypto/dist/crypto.node.cjs
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
const nodeCrypto = require('node:crypto');
|
||||
|
||||
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e.default : e; }
|
||||
|
||||
const nodeCrypto__default = /*#__PURE__*/_interopDefaultCompat(nodeCrypto);
|
||||
|
||||
const subtle = nodeCrypto__default.webcrypto?.subtle || {};
|
||||
const randomUUID = () => {
|
||||
return nodeCrypto__default.randomUUID();
|
||||
};
|
||||
const getRandomValues = (array) => {
|
||||
return nodeCrypto__default.webcrypto.getRandomValues(array);
|
||||
};
|
||||
const _crypto = {
|
||||
randomUUID,
|
||||
getRandomValues,
|
||||
subtle
|
||||
};
|
||||
|
||||
exports.default = _crypto;
|
||||
exports.getRandomValues = getRandomValues;
|
||||
exports.randomUUID = randomUUID;
|
||||
exports.subtle = subtle;
|
Reference in New Issue
Block a user