
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@ultraq/object-utils
Advanced tools
A collection of utilities for JavaScript objects.
npm install @ultraq/object-utils
Deep-equality comparison between 2 objects on whether they contain the same
values as each other. Only works with objects that act as data structures, not
classes or the like as this function only compares primitives using identity
(===) comparison.
Deep-merges all of the properties of the objects in sources with target,
modifying the target object and returning it.
The null-safe nature of this method is now in JavaScript as the optional chaining operator (
?.). If you're not using string paths/selectors to the item in your object, then I suggest you use that instead. Otherwise, if you're using string path selectors or can't use that method because of browser support, this method will still do the job 🙂
Returns a value from an object via a path string that describes the nesting of objects to get to the value, eg:
let object = {
greeting: {
message: 'Hello!'
}
};
let pathToMessage = 'greeting.message';
If the path doesn't resolve to anything, then undefined is returned.
FAQs
A collection of utilities for JavaScript objects
We found that @ultraq/object-utils 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.