utils.ts 88 B

123
  1. export function randomStr(len = 6) {
  2. return Math.random().toString(36).slice(-len);
  3. }