1.0.2 • Published 8 years ago

babel-plugin-remove-object-properties v1.0.2

Weekly downloads
2,553
License
MIT
Repository
-
Last release
8 years ago

#Babel Plugin for Removing Object Properties

Removes nodes in the AST (abstract syntax tree) that match a supplied regex if the node is of type ObjectProperty.

Why?

For testing, we want to add attributes to react elements like:

<div
    data-id="test">
</div>

We wanted a plugin that would then strip these attributes during the transpilation phase.

Installation

$ npm install babel-plugin-remove-object-properties

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": [["remove-object-properties", { "regexp": "data-*" }]]
}