node_modules: upgrade

This commit is contained in:
Dawid Dziurla 2022-10-27 10:26:28 +02:00
parent b755e71a2c
commit 459a37aa01
No known key found for this signature in database
GPG key ID: 7B6D8368172E9B0B
1068 changed files with 6067 additions and 105143 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;