()
| 5 | * Returns a unique identifier |
| 6 | */ |
| 7 | export let getUid = function (): string { |
| 8 | return `${Date.now().toString(36)}-${(Math.random() * 10000000000000000000).toString(36)}` |
| 9 | } |
| 10 | |
| 11 | /** |
| 12 | * Takes a key-value map and returns |
no outgoing calls
no test coverage detected