Irina Glushko 2389e7160b HW1 done преди 3 години
..
lib 2389e7160b HW1 done преди 3 години
.npmignore 2389e7160b HW1 done преди 3 години
README.md 2389e7160b HW1 done преди 3 години
package.json 2389e7160b HW1 done преди 3 години

README.md

babel-plugin-syntax-object-rest-spread

Allow parsing of object rest/spread.

Installation

$ npm install babel-plugin-syntax-object-rest-spread

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["syntax-object-rest-spread"]
}

Via CLI

$ babel --plugins syntax-object-rest-spread script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["syntax-object-rest-spread"]
});