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

Method prepend

src/MagicString.ts:686–693  ·  view source on GitHub ↗

* Prepends the string with the specified content.

(content: string)

Source from the content-addressed store, hash-verified

684 * Prepends the string with the specified content.
685 */
686 prepend(content: string): this {
687 if (typeof content !== 'string') {
688 throw new MagicStringError(`content must be a string, got ${typeof content}`)
689 }
690
691 this.intro = content + this.intro
692 return this
693 }
694
695 /**
696 * Same as `s.appendLeft(...)`, except that the inserted content will go *before* any previous appends or prepends at index

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected