Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@bjoerge/immerge
Advanced tools
Immutable shallow merge of plain JavaScript objects, maintaining referential equality when possible
Immutable shallow merge of plain JavaScript objects, maintaining referential equality when possible.
Using Object.assign
or the object spread syntax to shallowly merge JavaScript objects will always return new objects with properties copied over. This breaks referential equality even if the result ends up being shallowly equal to either the given target or one of its source objects.
Immerge instead performs an equality check during merge and if the result of the merge operation ends up being shallowly equal to the given target or any of the given sources, the identical target or source value is returned instead.
import {immerge} from '@bjoerge/immerge'
immerge({ foo: 'bar' }, { bar: 'baz' }, {baz: 'qux'})
// => {foo: 'bar', bar: 'baz', baz: 'qux'}
Alternatively, using or CommonJS require
:
const {immerge} = require('@bjoerge/immerge')
immerge({ foo: 'bar' }, { bar: 'baz' }, {baz: 'qux'})
// => {foo: 'bar', bar: 'baz', baz: 'qux'}
const target = { foo: 'bar' }
const source = { foo: 'bar' }
const result = immerge(target, source)
result === target
// => true (because the given target is shallowly equal to the result of the merge operation)
const target = { foo: 'foo' }
const source = { foo: 'foo', bar: 'bar' }
const result = immerge(target, source)
result === source
// => true (because the given *source* is shallowly equal to the result of the merge operation)
const target = { foo: 'notfoo', bar: 'bar' }
const source = { foo: 'foo' }
const result = immerge(target, source)
result !== source && result !== target
// => true (because neither the given source nor the given target is shallowly equal to the result
// of the merge operation)
const target = { foo: 'notfoo', bar: 'bar' }
const source1 = { foo: 'foo' }
const source2 = { foo: 'foo', bar: 'bar' }
const result = immerge(target, source1, source2)
result === source2
// => true (because source2 is shallowly equal to the result of the merge operation)
FAQs
Immutable shallow merge of plain JavaScript objects, maintaining referential equality when possible
The npm package @bjoerge/immerge receives a total of 0 weekly downloads. As such, @bjoerge/immerge popularity was classified as not popular.
We found that @bjoerge/immerge 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.