* Get current character * @param index - relative index from current position
(index = 0)
| 63 | * @param index - relative index from current position |
| 64 | */ |
| 65 | char(index = 0) { |
| 66 | return this.#source[this.#position + index] ?? ""; |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Get sliced string |
no outgoing calls
no test coverage detected