(array: string[])
| 39 | private static _timeHighBits = ['8', '9', 'a', 'b']; |
| 40 | |
| 41 | private static _oneOf(array: string[]): string { |
| 42 | return array[Math.floor(array.length * Math.random())]; |
| 43 | } |
| 44 | |
| 45 | private static _randomHex(): string { |
| 46 | return V4UUID._oneOf(V4UUID._chars); |
no outgoing calls
no test coverage detected