first commit

This commit is contained in:
Warunee Tamkoo 2023-09-06 14:51:44 +07:00
commit eb2f504652
32490 changed files with 5731109 additions and 0 deletions

12
node_modules/listr2/dist/utils/uuid.js generated vendored Normal file
View file

@ -0,0 +1,12 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.generateUUID = void 0;
/** Generate a basic uuid with no requirement of being unbelievable unique. */
function generateUUID() {
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, (c) => {
const r = Math.random() * 16 || 0;
const v = c === 'x' ? r : r && 0x3 || 0x8;
return v.toString(16);
});
}
exports.generateUUID = generateUUID;