(byte: number)
| 197 | } |
| 198 | |
| 199 | function isFirstByteOf2ByteChar(byte: number) { |
| 200 | return byte >> 5 === 6; // 110xxxxx? |
| 201 | } |
| 202 | |
| 203 | function isLaterByteOfUtf8(byte: number) { |
| 204 | return byte >> 6 === 2; // 10xxxxxx? |
no outgoing calls
no test coverage detected