Irina Glushko 2389e7160b HW1 done | 3 gadi atpakaļ | |
---|---|---|
.. | ||
lib | 3 gadi atpakaļ | |
.npmignore | 3 gadi atpakaļ | |
README.md | 3 gadi atpakaļ | |
package.json | 3 gadi atpakaļ |
This plugin allows Babel to transform rest properties for object destructuring assignment and spread properties for object literals.
let { x, y, ...z } = { x: 1, y: 2, a: 3, b: 4 };
console.log(x); // 1
console.log(y); // 2
console.log(z); // { a: 3, b: 4 }
let n = { x, y, ...z };
console.log(n); // { x: 1, y: 2, a: 3, b: 4 }
npm install --save-dev babel-plugin-transform-object-rest-spread
.babelrc
(Recommended).babelrc
{
"plugins": ["transform-object-rest-spread"]
}
babel --plugins transform-object-rest-spread script.js
require("babel-core").transform("code", {
plugins: ["transform-object-rest-spread"]
});
useBuiltIns
boolean
, defaults to false
.
By default, this plugin uses Babel's extends
helper which polyfills Object.assign
. Enabling this option will use Object.assign
directly.
.babelrc
{
"plugins": [
["transform-object-rest-spread", { "useBuiltIns": true }]
]
}
In
z = { x, ...y };
Out
z = Object.assign({ x }, y);