svgo
Version:
Nodejs-based tool for optimizing SVG vector graphics files
43 lines (36 loc) • 1.03 kB
JavaScript
var regViewBox = /^0\s0\s(\d+)\s(\d+)$/,
viewBoxElems = ['svg', 'pattern'];
/**
* Remove viewBox attr which coincides with a width/height box.
*
* @see http://www.w3.org/TR/SVG/coords.html#ViewBoxAttribute
*
* @example
* <svg width="100" height="50" viewBox="0 0 100 50">
* ⬇
* <svg width="100" height="50">
*
* @param {Object} item current iteration item
* @param {Object} params plugin params
* @return {Boolean} if false, item will be filtered out
*
* @author Kir Belevich
*/
exports.removeViewBox = function(item, params) {
if (
item.isElem(viewBoxElems) &&
item.hasAttr('viewBox') &&
item.hasAttr('width') &&
item.hasAttr('height')
) {
var match;
if (match = item.attr('viewBox').value.match(regViewBox)) {
if (
item.attr('width').value == match[1] &&
item.attr('height').value == match[2]
) {
item.removeAttr('viewBox');
}
}
}
};