(uint8)
| 5 | const { alphabets, invalid, valid } = fixtures |
| 6 | |
| 7 | const uint8ArrayToHexString = (uint8) => { |
| 8 | return Array.from(uint8).reduce((acc, curr) => `${acc}${curr.toString(16).padStart(2, '0')}`, '') |
| 9 | } |
| 10 | |
| 11 | const uint8ArrayFromHexString = (string) => { |
| 12 | if (!string.length) { |
no outgoing calls
no test coverage detected
searching dependent graphs…