first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

20
node_modules/uuid/deprecate.js generated vendored Normal file
View File

@@ -0,0 +1,20 @@
// Extracted from: https://github.com/TooTallNate/util-deprecate
let deprecate;
try {
const util = require('util');
deprecate = util.deprecate;
} catch (err) {
deprecate = function deprecate(fn, msg) {
var warned = false;
function deprecated() {
if (!warned) {
console.warn(msg);
warned = true;
}
return fn.apply(this, arguments);
}
return deprecated;
};
}
module.exports = deprecate;