Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@ndhoule/defaults
Advanced tools
Copies owned, enumerable properties from a source object(s) to a target object when the value of that property on the source object is `undefined`.
Copies owned, enumerable properties from a source object(s) to a target object when the value of that property on the source object is undefined
.
$ component install ndhoule/defaults
$ npm install @ndhoule/defaults
defaults(target : Object, sources : ...Object)
=> ObjectCopies owned, enumerable properties from a source object(s) to a target object when the value of that property on the source object is undefined
.
var a = { a: 1 };
var b = { a: 2, b: 2 };
defaults(a, b);
console.log(a); //=> { a: 1, b: 2 }
defaults.deep(target : Object, sources : ...Object)
=> ObjectDeeply copies owned, enumerable properties from a source object(s), recursing on object properties, to a target object when the value of that property on the source object is undefined
.
var a = { a: 1, b: { c: 3 } };
var b = { a: 2, b: { d: 4 } };
defaults(a, b);
console.log(a); //=> { a: 1, b: { c: 3, d: 4} }
Released under the MIT license.
2.0.0
FAQs
Copies owned, enumerable properties from a source object(s) to a target object when the value of that property on the source object is `undefined`.
The npm package @ndhoule/defaults receives a total of 12,779 weekly downloads. As such, @ndhoule/defaults popularity was classified as popular.
We found that @ndhoule/defaults 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.