(string: string, start = 0)
| 21 | } |
| 22 | |
| 23 | export function isSurrogatePair(string: string, start = 0): boolean { |
| 24 | return isHighSurrogate(string, start) && isLowSurrogate(string, start + 1); |
| 25 | } |
| 26 | |
| 27 | export function decodeUnicodeEscapeSequence(string: string): string { |
| 28 | let result = ''; |
no test coverage detected