1
0
mirror of https://github.com/svg/svgo.git synced 2025-04-27 00:08:49 +03:00
svgo/plugins/removeScriptElement.js
2021-02-24 11:18:48 +03:00

24 lines
425 B
JavaScript

'use strict';
exports.type = 'perItem';
exports.active = false;
exports.description = 'removes <script> elements (disabled by default)';
/**
* Remove <script>.
*
* https://www.w3.org/TR/SVG11/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');
};