UNPKG

twreporter-react

Version:

React-Redux site for The Reporter Foundation in Taiwan

24 lines (17 loc) 396 B
'use strict'; exports.type = 'perItem'; exports.active = false; exports.description = 'removes <style>'; /** * 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'); };