export default function encodeSvelteValue(source: string): string { return source .replace(/{/g, '{') .replace(/}/g, '}'); }