A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://babeljs.io/docs/plugins/transform-object-rest-spread/ below:

@babel/plugin-transform-object-rest-spread · Babel

@babel/plugin-transform-object-rest-spread

info

This plugin is included in @babel/preset-env, in ES2018

Example Rest Properties

JavaScript

let { x, y, ...z } = { x: 1, y: 2, a: 3, b: 4 };
console.log(x);
console.log(y);
console.log(z);
Spread Properties

JavaScript

let n = { x, y, ...z };
console.log(n);
Installation
npm install --save-dev @babel/plugin-transform-object-rest-spread
yarn add --dev @babel/plugin-transform-object-rest-spread
pnpm add --save-dev @babel/plugin-transform-object-rest-spread
bun add --dev @babel/plugin-transform-object-rest-spread
Usage With a configuration file (Recommended)

babel.config.json

{
"plugins": ["@babel/plugin-transform-object-rest-spread"]
}
Via CLI

Shell

babel --plugins @babel/plugin-transform-object-rest-spread script.js
Via Node API

JavaScript

require("@babel/core").transformSync("code", {
plugins: ["@babel/plugin-transform-object-rest-spread"],
});
Options

By default, this plugin will produce spec compliant code by using Babel's objectSpread helper.

loose

boolean, defaults to false.

Enabling this option will use Babel's extends helper, which is basically the same as Object.assign (see useBuiltIns below to use it directly).

babel.config.json

{
"assumptions": {
"setSpreadProperties": true
}
}

Please keep in mind that even if they're almost equivalent, there's an important difference between spread and Object.assign: spread defines new properties, while Object.assign() sets them, so using this mode might produce unexpected results in some cases.

For detailed information please check out Spread VS. Object.assign and Assigning VS. defining properties.

useBuiltIns

boolean, defaults to false.

Enabling this option will use Object.assign directly instead of the Babel's extends helper.

Example

.babelrc

JSON

{
"assumptions": {
"setSpreadProperties": true
},
"plugins": [
["@babel/plugin-transform-object-rest-spread", { "useBuiltIns": true }]
]
}

In

Out

JavaScript

z = Object.assign({ x }, y);

tip

You can read more about configuring plugin options here

References

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4