(byte: number)
| 193 | } |
| 194 | |
| 195 | function isFirstByteOf3ByteChar(byte: number) { |
| 196 | return byte >> 4 === 14; // 1110xxxx? |
| 197 | } |
| 198 | |
| 199 | function isFirstByteOf2ByteChar(byte: number) { |
| 200 | return byte >> 5 === 6; // 110xxxxx? |
no outgoing calls
no test coverage detected