Files
spring-festival-greetings/utils/common.js

7 lines
184 B
JavaScript
Raw Normal View History

2026-01-22 22:11:02 +08:00
export const generateObjectId = (
m = Math,
d = Date,
h = 16,
s = (s) => m.floor(s).toString(h),
) => s(d.now() / 1000) + " ".repeat(h).replace(/./g, () => s(m.random() * h));