* Returns a Unicode code point at given index. * @param {number} index Unicode code point index * @return {number} Unicode code point
(index)
| 104 | * @return {number} Unicode code point |
| 105 | */ |
| 106 | getCodePointAt (index) { |
| 107 | return this.getCodePoints()[index] |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Returns the string representation of Unicode character at given index. |
no test coverage detected