4 ms·
Here's one I use for cryptographic purposes: let invocations = 0; export function rand3000() { invocations += 1; const timestamp = new Date().get
by some1else 2y ago
Here's one I use for cryptographic purposes:
let invocations = 0;
export function rand3000() {
invocations += 1;
const timestamp = new Date().getTime() + invocations * 1000;
const masked = (timestamp ^ (timestamp >> 8)) & 0xFF;
const result = masked / 255;
return result;
}