8 lines
279 B
JavaScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
/**
* Remove whitespace
*/
function trimSVG(str) {
return str.replace(/(['"])\s*\n\s*([^>\\/\s])/g, "$1 $2").replace(/(["';{}><])\s*\n\s*/g, "$1").replace(/\s*\n\s*/g, " ").replace(/\s+"/g, "\"").replace(/="\s+/g, "=\"").replace(/(\s)+\/>/g, "/>").trim();
}
export { trimSVG };