convertido para pnpm

This commit is contained in:
Luiz Silva 2025-07-17 10:37:54 -03:00
parent 59e710f6cf
commit 175d767d27
115 changed files with 2366 additions and 1451 deletions

View file

@ -0,0 +1,10 @@
import { NIL, v3, v4 } from "uuid";
const uuidV3 = (qualquerCoisa) => v3(
typeof qualquerCoisa == "string" ? qualquerCoisa : typeof qualquerCoisa == "number" ? String(qualquerCoisa) : JSON.stringify(qualquerCoisa),
NIL
);
const uuidV4 = v4;
export {
uuidV3,
uuidV4
};