MCPcopy Create free account
hub / github.com/MCSManager/MCSManager / timeUuid

Function timeUuid

panel/src/app/service/password.ts:3–8  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1import { v4 } from "uuid";
2
3export function timeUuid() {
4 let uuid = v4().replace(/-/gim, "");
5 const t = new Date().getTime() + "";
6 uuid = uuid + t;
7 return uuid;
8}

Callers 4

loginSuccessFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected