* Returns the first non-basic code point, if any. * @param {number[]} codePoints Code points * @return {number} Index of first non-basic code point or -1, if the code * points are all basic.
(codePoints)
| 130 | * points are all basic. |
| 131 | */ |
| 132 | _nonBasicCodePointIndex (codePoints) { |
| 133 | return codePoints.findIndex(codePoint => codePoint >= 0x80) |
| 134 | } |
| 135 | } |
no outgoing calls
no test coverage detected