UNPKG

@iconify/utils

Version:

Common functions for working with Iconify icon sets used by various packages.

8 lines (5 loc) 274 B
'use strict'; 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(); } exports.trimSVG = trimSVG;