Frontend/25_01_07/mai/node_modules/svgo/plugins/removeTitle.js
szabomarton 7f4a15b9c3 asd
2025-01-28 11:38:27 +01:00

24 lines
411 B
JavaScript

'use strict';
exports.type = 'perItem';
exports.active = true;
exports.description = 'removes <title>';
/**
* Remove <title>.
*
* https://developer.mozilla.org/en-US/docs/Web/SVG/Element/title
*
* @param {Object} item current iteration item
* @return {Boolean} if false, item will be filtered out
*
* @author Igor Kalashnikov
*/
exports.fn = function(item) {
return !item.isElem('title');
};