UNPKG

svelte-rune-highlight

Version:
7 lines (6 loc) 269 B
export function replaceLibImport(componentString, libraryName) { if (typeof componentString !== 'string') { throw new Error('Invalid componentString: Expected a string'); } return componentString.replace(/from '\$lib'/g, `from '${libraryName}'`); }