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.
@corex/deepmerge
Advanced tools
A zero dependency object merger with typescript support and built in common merge utilities.
A zero dependency object merger with typescript support and built in common merge utilities. Support merging of n number of objects
yarn add @corex/deepmerge
import { merge } from '@corex/deepmerge'
merge([obj1, obj2, obj3], { options })
property | default | description |
---|---|---|
arrayMergeType | combine | Merge two array by concatenation and remove duplicates. Available options are combine , overwrite |
arrayMerge | - | Custom merge function to handle array merging. |
const obj1 = {
a: 1,
b: {
c: 2,
},
}
const obj2 = {
a: 2,
b: {
c: 4,
d: 5,
},
}
const result = merge([obj1, obj2])
console.log(result)
// {
// a: 2,
// b: {
// c: 4,
// d: 5,
// },
// }
const arr1 = {
a: [1, 2, 3],
}
const arr2 = {
a: [3, 4, 5],
}
const result = merge([arr1, arr2])
console.log(result)
// result = {
// a: [1, 2, 3, 4, 5],
// }
const obj1 = {
a: 2,
b: (x: number, y: number) => x + y,
c: [1, 2, 4],
d: {
e: [4, 5, 7],
},
}
console.log(obj1.b(7, 5)) // ==> 12
const obj2 = {
a: 10,
b: (x: number, y: number) => x / y,
c: [20, 30],
d: {
e: [4, 7, 5],
f: {
g: 'another',
},
},
}
const obj3 = {
b: (x: number, y: number) => x * y,
c: [1, 2, 4],
d: {
e: [4, 7, 5],
},
}
const result = merge([obj1, obj2, obj3])
console.log(result.b(7, 5)) // ==> 35
By default @corex/deepmerge
uses combine merge. However user can implement their own methods to perform merge or use the built in overwrite
.
const obj1 = {
a: [1, 2, 3],
b: ['c', 'd'],
c: {
d: [1, 2],
},
}
const obj2 = {
a: [1, 7, 6],
b: ['e', 'f'],
c: {
d: [9, 10],
},
}
const obj3 = {
a: [20, 40],
}
const result = merge([obj1, obj2, obj3], {
arrayMergeType: 'overwrite',
})
console.log(result)
// result = {
// a: [20, 40],
// b: ['e', 'f'],
// c: {
// d: [9, 10],
// },
// }
const obj1 = {
a: ['1', '2'],
c: {
d: [1000, 500],
},
}
const obj2 = {
a: ['4', '5'],
c: {
d: [60, 80],
},
}
const customMergeFn = (_: any[], __: any[]) => 42
const result = merge([obj1, obj2], {
arrayMerge: customMergeFn,
})
console.log(result)
// {
// a: 42,
// c: {
// d: 42,
// },
// }
FAQs
A zero dependency object merger with typescript support and built in common merge utilities.
The npm package @corex/deepmerge receives a total of 243,319 weekly downloads. As such, @corex/deepmerge popularity was classified as popular.
We found that @corex/deepmerge 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.