mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-28 03:49:13 +08:00
5 lines
178 B
Text
5 lines
178 B
Text
function trimSVG(str) {
|
|
return str.replace(/(["';{}><])\s*\n\s*/g, "$1").replace(/\s*\n\s*/g, " ").replace(/\s+"/g, '"').replace(/="\s+/g, '="').trim();
|
|
}
|
|
|
|
export { trimSVG };
|