/var/www/cobraambalaj/node_modules/svgo/plugins
Edit: /var/www/cobraambalaj/node_modules/svgo/plugins/removeComments.js (508B)
'use strict';
exports.type = 'perItem';
exports.active = true;
exports.description = 'removes comments';
/**
* Remove comments.
*
* @example
*
*
* @param {Object} item current iteration item
* @return {Boolean} if false, item will be filtered out
*
* @author Kir Belevich
*/
exports.fn = function(item) {
if (item.comment && item.comment.charAt(0) !== '!') {
return false;
}
};