Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@babel/plugin-transform-object-assign
Advanced tools
Replace Object.assign with an inline helper
@babel/plugin-transform-object-assign is a Babel plugin that transforms ES6 Object.assign() calls into a more compatible form for older environments that do not support Object.assign(). This is particularly useful for ensuring code compatibility across different JavaScript environments.
Transform Object.assign()
This feature transforms the ES6 Object.assign() method into a compatible form for older JavaScript environments. The code sample demonstrates how Object.assign() is used to merge properties from a source object into a target object.
const target = { a: 1 };
const source = { b: 2 };
const result = Object.assign(target, source);
console.log(result); // { a: 1, b: 2 }
core-js is a modular standard library for JavaScript that includes polyfills for many ECMAScript features, including Object.assign(). It provides a more comprehensive solution compared to @babel/plugin-transform-object-assign, as it covers a wider range of polyfills.
lodash.assign is a method from the Lodash library that performs a similar function to Object.assign(). It is part of the larger Lodash utility library, which offers a wide range of utility functions for JavaScript. Unlike @babel/plugin-transform-object-assign, lodash.assign is not a Babel plugin but a standalone utility function.
object-assign is a standalone npm package that provides a polyfill for Object.assign(). It is a lightweight alternative to @babel/plugin-transform-object-assign and is useful for projects that need a simple polyfill without the overhead of a full Babel plugin.
Replace
Object.assign
with an inline helper. If you are authoring an application, rather than a library, it is recommended that you use theObject.assign
polyfill instead.
In
Object.assign(a, b);
Out
var _extends = ...;
_extends(a, b);
Will only work with code of the form Object.assign
or Object['assign']
. The following patterns are not supported:
var { assign } = Object;
var assign = Object.assign;
npm install --save-dev @babel/plugin-transform-object-assign
.babelrc
(Recommended).babelrc
{
"plugins": ["@babel/plugin-transform-object-assign"]
}
babel --plugins @babel/plugin-transform-object-assign script.js
require("@babel/core").transform("code", {
plugins: ["@babel/plugin-transform-object-assign"]
});
FAQs
Replace Object.assign with an inline helper
The npm package @babel/plugin-transform-object-assign receives a total of 662,824 weekly downloads. As such, @babel/plugin-transform-object-assign popularity was classified as popular.
We found that @babel/plugin-transform-object-assign demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.