Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 | 20x | export const NOOP = () => { }; export function generateUEID() { let first = (Math.random() * 46656) | 0; let second = (Math.random() * 46656) | 0; first = ('000' + first.toString(36)).slice(-3); second = ('000' + second.toString(36)).slice(-3); return first + second; } |