Added the dependencies.
Some checks failed
Lint / pre-commit Linting (push) Failing after 42s

This commit is contained in:
2023-11-25 00:59:10 +01:00
parent 0858cc69be
commit 20d547fd4d
607 changed files with 88800 additions and 0 deletions

23
node_modules/uuid/dist/sha1.js generated vendored Normal file
View File

@ -0,0 +1,23 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _crypto = _interopRequireDefault(require("crypto"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function sha1(bytes) {
if (Array.isArray(bytes)) {
bytes = Buffer.from(bytes);
} else if (typeof bytes === 'string') {
bytes = Buffer.from(bytes, 'utf8');
}
return _crypto.default.createHash('sha1').update(bytes).digest();
}
var _default = sha1;
exports.default = _default;