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

Method prepend

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

* Prepends the string with the specified content.

(content: string)

Source from the content-addressed store, hash-verified

691 * Prepends the string with the specified content.
692 */
693 prepend(content: string): this {
694 if (typeof content !== 'string') {
695 throw new MagicStringError(`content must be a string, got ${typeof content}`)
696 }
697
698 this.intro = content + this.intro
699 return this
700 }
701
702 /**
703 * 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