* Returns a clone of `s`, with all content before the `start` and `end` characters of the original string removed.
(start: number, end: number)
| 958 | * Returns a clone of `s`, with all content before the `start` and `end` characters of the original string removed. |
| 959 | */ |
| 960 | snip(start: number, end: number): this { |
| 961 | const clone = this.clone() |
| 962 | clone.remove(0, start) |
| 963 | clone.remove(end, clone.original.length) |
| 964 | |
| 965 | return clone |
| 966 | } |
| 967 | |
| 968 | /** @internal */ |
| 969 | _split(index: number): boolean | void { |