* Get sliced string * @param start - start position relative from current position * @param end - end position relative from current position
(start: number, end: number)
| 72 | * @param end - end position relative from current position |
| 73 | */ |
| 74 | slice(start: number, end: number): string { |
| 75 | return this.#source.slice(this.#position + start, this.#position + end); |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * Move position to next |
no outgoing calls
no test coverage detected