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

Format all plugins with prettier

This commit is contained in:
Bogdan Chadkin
2021-03-09 19:58:00 +03:00
parent 1be0d0dba1
commit 00ec0f71fe
41 changed files with 2053 additions and 1992 deletions

View File

@ -16,8 +16,6 @@ exports.description = 'removes <script> elements (disabled by default)';
*
* @author Patrick Klingemann
*/
exports.fn = function(item) {
return !item.isElem('script');
exports.fn = function (item) {
return !item.isElem('script');
};