
svgo-0.3.7.node_modules.svgo.plugins.removeComments.js Maven / Gradle / Ivy
The newest version!
'use strict';
exports.type = 'perItem';
exports.active = true;
/**
* 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;
}
};
© 2015 - 2025 Weber Informatics LLC | Privacy Policy