* Returns a clone of `s`, with all content before the `start` and `end` characters of the original string removed.
(start: number, end: number)
| 966 | * Returns a clone of `s`, with all content before the `start` and `end` characters of the original string removed. |
| 967 | */ |
| 968 | snip(start: number, end: number): this { |
| 969 | const clone = this.clone() |
| 970 | clone.remove(0, start) |
| 971 | clone.remove(end, clone.original.length) |
| 972 | |
| 973 | return clone |
| 974 | } |
| 975 | |
| 976 | /** @internal */ |
| 977 | _split(index: number): boolean | void { |