Initial commit - Event Planner application

This commit is contained in:
mberlin
2026-03-18 14:55:56 -03:00
commit 86d779eb4d
7548 changed files with 1006324 additions and 0 deletions

6
node_modules/uid/single/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,6 @@
/**
* Produce a UID of desired length.
* @NOTE Relies on a alpanumic alphabet (A-Z, 0-9).
* @param {number} [length] Defaults to `11`
*/
export function uid(length?: number): string;

10
node_modules/uid/single/index.js generated vendored Normal file
View File

@@ -0,0 +1,10 @@
var IDX=36, HEX='';
while (IDX--) HEX += IDX.toString(36);
function uid(len) {
var str='', num = len || 11;
while (num--) str += HEX[Math.random() * 36 | 0];
return str;
}
exports.uid = uid;

1
node_modules/uid/single/index.min.js generated vendored Normal file
View File

@@ -0,0 +1 @@
!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n(e.uid={})}(this,(function(e){for(var n=36,o="";n--;)o+=n.toString(36);e.uid=function(e){for(var n="",t=e||11;t--;)n+=o[36*Math.random()|0];return n}}));

8
node_modules/uid/single/index.mjs generated vendored Normal file
View File

@@ -0,0 +1,8 @@
var IDX=36, HEX='';
while (IDX--) HEX += IDX.toString(36);
export function uid(len) {
var str='', num = len || 11;
while (num--) str += HEX[Math.random() * 36 | 0];
return str;
}