mirror of
https://github.com/umami-software/umami.git
synced 2026-02-05 05:07:15 +01:00
20 lines
507 B
TypeScript
20 lines
507 B
TypeScript
import prand from 'pure-rand';
|
|
|
|
const seed = Date.now() ^ (Math.random() * 0x100000000);
|
|
const rng = prand.xoroshiro128plus(seed);
|
|
|
|
export function random(min: number, max: number) {
|
|
return prand.unsafeUniformIntDistribution(min, max, rng);
|
|
}
|
|
|
|
export function getRandomChars(
|
|
n: number,
|
|
chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',
|
|
) {
|
|
const arr = chars.split('');
|
|
let s = '';
|
|
for (let i = 0; i < n; i++) {
|
|
s += arr[random(0, arr.length - 1)];
|
|
}
|
|
return s;
|
|
}
|