Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@babel/plugin-proposal-object-rest-spread
Advanced tools
The @babel/plugin-proposal-object-rest-spread package allows developers to use the object rest and spread properties syntax in their JavaScript code. This syntax is part of the ECMAScript proposal and enables more concise and readable code when copying properties from one object to another or collecting the remaining properties of an object after certain properties have been extracted.
Object Spread
Allows an object's own enumerable properties to be copied into a new object. This is useful for creating a new object with the same properties as an existing object or for combining multiple objects.
{ ...source }
Object Rest
Enables extracting properties from objects and binding the remaining properties to a new object. This is useful for omitting certain properties from an object and keeping the rest.
const { a, b, ...rest } = source;
A polyfill for Object.assign which is a method used to copy the values of all enumerable own properties from one or more source objects to a target object. It is similar to the spread operator but does not allow for rest properties and is not a Babel plugin.
A library for deep (recursive) merging of objects. It is similar to object spread in that it allows for combining objects, but it goes deeper, merging nested objects as well, which is not something object spread syntax does by default.
Part of the Lodash library, this function is used for a deep merge of own and inherited enumerable properties of source objects into the destination object. It's more powerful than the spread operator in terms of deep merging capabilities.
A port of the classic jQuery.extend() method to Node.js. It can be used to copy properties from one or more source objects to a target object, similar to the spread operator, but it is not specifically a Babel plugin and does not handle the rest properties syntax.
Compile object rest and spread to ES5
See our website @babel/plugin-proposal-object-rest-spread for more information.
Using npm:
npm install --save-dev @babel/plugin-proposal-object-rest-spread
or using yarn:
yarn add @babel/plugin-proposal-object-rest-spread --dev
v7.18.0 (2022-05-19)
babel-preset-env
babel-helper-create-class-features-plugin
, babel-helper-define-map
, babel-plugin-proposal-class-static-block
, babel-plugin-proposal-destructuring-private
, babel-plugin-proposal-object-rest-spread
, babel-plugin-syntax-destructuring-private
, babel-plugin-transform-destructuring
, babel-plugin-transform-proto-to-assign
, babel-plugin-transform-typescript
, babel-standalone
, babel-traverse
, babel-types
babel-generator
, babel-parser
, babel-types
babel-generator
, babel-parser
extends
constraints for infer
(@sosukesuzuki)babel-generator
, babel-parser
, babel-plugin-transform-typescript
, babel-traverse
, babel-types
babel-helper-module-transforms
, babel-plugin-transform-modules-amd
, babel-plugin-transform-modules-commonjs
, babel-plugin-transform-modules-umd
importInterop
method (@NickHeiner)babel-types
babel-parser
babel-plugin-transform-react-pure-annotations
babel-core
, babel-helper-transform-fixture-test-runner
, babel-helpers
, babel-plugin-proposal-async-generator-functions
, babel-plugin-transform-async-to-generator
, babel-plugin-transform-block-scoping
, babel-plugin-transform-classes
, babel-plugin-transform-regenerator
, babel-plugin-transform-runtime
, babel-preset-env
, babel-runtime-corejs2
, babel-runtime-corejs3
, babel-runtime
, babel-standalone
regeneratorRuntime
as a normal helper (@nicolo-ribaudo)FAQs
Compile object rest and spread to ES5
The npm package @babel/plugin-proposal-object-rest-spread receives a total of 13,855,179 weekly downloads. As such, @babel/plugin-proposal-object-rest-spread popularity was classified as popular.
We found that @babel/plugin-proposal-object-rest-spread demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.