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 };