
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
gorillatron-extend
Advanced tools
Merge properties from two objects into one new object.
$ component install gorillatron/extend
Like jquery extend, but doesnt mutate passed objects, only returns a fresh object with the extended properties.
var defaults = {
hide: false,
delay: 1500,
css: {
color: 'blue'
}
}
var settings = extend(true, defaults,{
delay: 1700,
css: {
border: '1px solid red'
}
})
expect(settings).to.eql({
hide: false,
delay: 1700,
css: {
color: 'blue',
border: '1px solid red'
}
})
MIT
FAQs
Merge properties from a list of objects into one new object.
We found that gorillatron-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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.