Sha256: 8da092998de65e28a62364a84d87911d257bcab8d70d8849089c9fc7afe04983

Contents?: true

Size: 504 Bytes

Versions: 8

Compression:

Stored size: 504 Bytes

Contents

# babel-plugin-transform-es2015-destructuring

Compile ES2015 destructuring to ES5

## Installation

```sh
$ npm install babel-plugin-transform-es2015-destructuring
```

## Usage

### Via `.babelrc` (Recommended)

**.babelrc**

```json
{
  "plugins": ["transform-es2015-destructuring"]
}
```

### Via CLI

```sh
$ babel --plugins transform-es2015-destructuring script.js
```

### Via Node API

```javascript
require("babel-core").transform("code", {
  plugins: ["transform-es2015-destructuring"]
});
```

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
babel-schmooze-sprockets-0.1.3 node_modules/babel-plugin-transform-es2015-destructuring/README.md
babel-schmooze-sprockets-0.1.2 node_modules/babel-plugin-transform-es2015-destructuring/README.md
babel-schmooze-sprockets-0.1.1 node_modules/babel-plugin-transform-es2015-destructuring/README.md
babel-schmooze-sprockets-0.1.0 node_modules/babel-plugin-transform-es2015-destructuring/README.md
babel-schmooze-sprockets-0.1.0.alpha.3 node_modules/babel-plugin-transform-es2015-destructuring/README.md
babel-schmooze-sprockets-0.1.0.alpha.2 node_modules/babel-plugin-transform-es2015-destructuring/README.md
es6_tilt-0.1.2 test/dummy/node_modules/babel-plugin-transform-es2015-destructuring/README.md
es6_tilt-0.1.1 test/dummy/node_modules/babel-plugin-transform-es2015-destructuring/README.md