UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

24 lines (17 loc) 426 B
'use strict'; exports.type = 'perItem'; exports.active = false; exports.description = 'removes <style> element (disabled by default)'; /** * Remove <style>. * * http://www.w3.org/TR/SVG/styling.html#StyleElement * * @param {Object} item current iteration item * @return {Boolean} if false, item will be filtered out * * @author Betsy Dupuis */ exports.fn = function(item) { return !item.isElem('style'); };