fabric
Version:
Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.
10 lines (7 loc) • 390 B
JavaScript
import { reNum } from '../../parser/constants.mjs';
const regex = new RegExp("(".concat(reNum, ")"), 'gi');
const cleanupSvgAttribute = attributeValue => attributeValue.replace(regex, ' $1 ')
// replace annoying commas and arbitrary whitespace with single spaces
.replace(/,/gi, ' ').replace(/\s+/gi, ' ');
export { cleanupSvgAttribute };
//# sourceMappingURL=cleanupSvgAttribute.mjs.map