Sha256: eafcce5ab47ed81ef6dfa5a4b06d20a4f65297f75c8f5ac22b2b90123a554af1

Contents?: true

Size: 509 Bytes

Versions: 34

Compression:

Stored size: 509 Bytes

Contents

'use strict';

exports.type = 'perItem';

exports.active = true;

exports.description = 'removes empty attributes';

/**
 * Remove attributes with empty values.
 *
 * @param {Object} item current iteration item
 * @return {Boolean} if false, item will be filtered out
 *
 * @author Kir Belevich
 */
exports.fn = function(item) {

    if (item.elem) {

        item.eachAttr(function(attr) {
            if (attr.value === '') {
                item.removeAttr(attr.name);
            }
        });

    }

};

Version data entries

34 entries across 31 versions & 11 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/svgo/plugins/removeEmptyAttrs.js
disco_app-0.18.0 test/dummy/node_modules/svgo/plugins/removeEmptyAttrs.js
disco_app-0.18.2 test/dummy/node_modules/svgo/plugins/removeEmptyAttrs.js
disco_app-0.16.1 test/dummy/node_modules/svgo/plugins/removeEmptyAttrs.js
disco_app-0.15.2 test/dummy/node_modules/svgo/plugins/removeEmptyAttrs.js
disco_app-0.18.4 test/dummy/node_modules/svgo/plugins/removeEmptyAttrs.js
disco_app-0.18.1 test/dummy/node_modules/svgo/plugins/removeEmptyAttrs.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/svgo/plugins/removeEmptyAttrs.js
disco_app-0.14.0 test/dummy/node_modules/svgo/plugins/removeEmptyAttrs.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/svgo/plugins/removeEmptyAttrs.js
tang-0.2.1 spec/tang_app/node_modules/svgo/plugins/removeEmptyAttrs.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/svgo/plugins/removeEmptyAttrs.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/svgo/plugins/removeEmptyAttrs.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/svgo/plugins/removeEmptyAttrs.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/svgo/plugins/removeEmptyAttrs.js
tang-0.2.0 spec/tang_app/node_modules/svgo/plugins/removeEmptyAttrs.js
tang-0.1.0 spec/tang_app/node_modules/svgo/plugins/removeEmptyAttrs.js
tang-0.0.9 spec/tang_app/node_modules/svgo/plugins/removeEmptyAttrs.js
enju_library-0.3.8 spec/dummy/node_modules/svgo/plugins/removeEmptyAttrs.js
jester-data-8.0.0 node_modules/svgo/plugins/removeEmptyAttrs.js