HumanBreak/script/utils.ts

4 lines
111 B
TypeScript
Raw Normal View History

2023-05-31 12:09:47 +08:00
export function uniqueSymbol() {
return Math.ceil(Math.random() * 0xefffffff + 0x10000000).toString(16);
}