4 lines
105 B
TypeScript
Raw Normal View History

export function cleanUpSvgCode(svgCode: string): string {
return svgCode.replaceAll('<br>', '<br/>')
}