1
0
mirror of https://github.com/svg/svgo.git synced 2025-07-06 04:02:31 +03:00

add removeScriptElement plugin

This commit is contained in:
Patrick Klingemann
2017-03-23 12:45:21 -04:00
parent 5c15834144
commit 9f05ac814b
5 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,23 @@
'use strict';
exports.type = 'perItem';
exports.active = false;
exports.description = 'removes <script> elements (disabled by default)';
/**
* Remove <script>.
*
* https://www.w3.org/TR/SVG/script.html
*
* @param {Object} item current iteration item
* @return {Boolean} if false, item will be filtered out
*
* @author Patrick Klingemann
*/
exports.fn = function(item) {
return !item.isElem('script');
};