UNPKG

babel-plugin-remove-attribute

Version:
14 lines (12 loc) 239 B
module.exports = () => { return { visitor: { JSXAttribute(path, state) { const attribute = state.opts.attribute; if (path.node.name.name === attribute) { path.remove(); } } } }; }