(words32: number[])
| 155 | } |
| 156 | |
| 157 | function words32ToByteString(words32: number[]): string { |
| 158 | return words32.reduce((str, word) => str + word32ToByteString(word), ''); |
| 159 | } |
| 160 | |
| 161 | function word32ToByteString(word: number): string { |
| 162 | let str = ''; |
no test coverage detected
searching dependent graphs…