
Security News
Safari 18.4 Ships 3 New JavaScript Features from the TC39 Pipeline
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
eslint-plugin-extend
Advanced tools
ESLint rules to enforce safe usage of jQuery/Underscore/compatible extend() functions
ESLint rules for enforcing safe use of Underscore's _.extend(), jQuery's $.extend(), and compatible implementations.
If you or someone else on your team (despite being utterly brilliant, knowledgeable, and near-perfect) sometimes gets confused by the signature of _.extend() / $.extend() and accidentally modifies a source object rather than the destination object.
The Underscore library's _.extend()
function and jQuery's $.extend()
are both used to copy properties of one or more source objects to a specified destination object; they also return the destination object.
Both extend()
implementations modify the specified destination object. Consider the following statement:
var newObject = _.extend(objectA, objectB);
In this case, the properties of objectB
are copied into objectA
. newObject
is simply a reference to objectA
; both newObject
and objectA
point to the same, modified, object.
It is often the desire of the developer to create a whole new object into which the properties of source objects are copied. To do so, it is necessary to pass an object literal as the first argument to extend()
:
var newObject = _.extend({}, objectA, objectB);
Here, newObject
now points to a third object: the object literal that we passed in, extended with the properties of objectA
and objectB
. And objectA
is unmolested.
Forgetting to pass in an object literal as the first argument is a common mistake that leads to undesired side effects. Consider the following statement from a dinosaur genome management application built on a fictional MVC framework:
var HerbivorousDinosaurWeAreNotTooAfraidOf = _.extend(Model.Dinosaur, {
fillGapsWithIffyFrogDNASequence: true
});
Here, the goal was clearly to create a subset of Dinosaur
with the specified fillGapsWithIffyFrogDNASequence
property defined on it, but we inadvertently modified the Dinosaur itself and are in for a nasty surprise.
The rules added by this plugin allow you to catch this kind of dumb use of _.extend
early on, hopefully preventing the need for a lot of future debugging and reducing the number of lawsuits aimed at your live dinosaur theme park.
Documentation for each rule can be found in docs/rules.
FAQs
ESLint rules to enforce safe usage of jQuery/Underscore/compatible extend() functions
The npm package eslint-plugin-extend receives a total of 73 weekly downloads. As such, eslint-plugin-extend popularity was classified as not popular.
We found that eslint-plugin-extend demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
Research
Security News
The Socket Research Team investigates a malicious Python package that enables automated credit card fraud on WooCommerce stores by abusing real checkout and payment flows.
Security News
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.