MCPcopy Create free account
hub / github.com/Rich-Harris/magic-string / snip

Method snip

src/MagicString.ts:912–918  ·  view source on GitHub ↗

* Returns a clone of `s`, with all content before the `start` and `end` characters of the original string removed.

(start: number, end: number)

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 2

cloneMethod · 0.95
removeMethod · 0.45

Tested by

no test coverage detected