babel-plugin-remove-object-properties

1.0.2 • Public • Published

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-*" }]]
}

Readme

Keywords

none

Package Sidebar

Install

npm i babel-plugin-remove-object-properties

Weekly Downloads

1,170

Version

1.0.2

License

MIT

Last publish

Collaborators

  • bdupharm