|  | ||||
|---|---|---|---|---|
| .. | ||||
| lib | 11e3a9652a | лет %!s(int64=7): %!d(string=назад) | ||
| .npmignore | 11e3a9652a | лет %!s(int64=7): %!d(string=назад) | ||
| README.md | 11e3a9652a | лет %!s(int64=7): %!d(string=назад) | ||
| package.json | 11e3a9652a | лет %!s(int64=7): %!d(string=назад) | ||
Compile ES2015 spread to ES5
npm install --save-dev babel-plugin-transform-es2015-spread
.babelrc (Recommended).babelrc
// without options
{
  "plugins": ["transform-es2015-spread"]
}
// with options
{
  "plugins": [
    ["transform-es2015-spread", {
      "loose": true
    }]
  ]
}
babel --plugins transform-es2015-spread script.js
require("babel-core").transform("code", {
  plugins: ["transform-es2015-spread"]
});
loose - All iterables are assumed to be arrays.