()
| 112 | // Minimal cuid-like id |
| 113 | let lastCount = 0; |
| 114 | export const generateRandomId = (): string => { |
| 115 | const random = +(Date.now().toString(10).substr(0, 4) + lastCount++); |
| 116 | return random.toString(16); |
| 117 | }; |
no outgoing calls
no test coverage detected