* Returns a clone of `s`, with all content before the `start` and `end` characters of the original string removed.
(start: number, end: number)
| 910 | * Returns a clone of `s`, with all content before the `start` and `end` characters of the original string removed. |
| 911 | */ |
| 912 | snip(start: number, end: number): this { |
| 913 | const clone = this.clone() |
| 914 | clone.remove(0, start) |
| 915 | clone.remove(end, clone.original.length) |
| 916 | |
| 917 | return clone |
| 918 | } |
| 919 | |
| 920 | /** @internal */ |
| 921 | _split(index: number): boolean | void { |