
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
assign-value
Advanced tools
Assign a value or extend a deeply nested property of an object using object path notation.
Assign a value or extend a deeply nested property of an object using object path notation.
Install with npm
$ npm i assign-value --save
var assign = require('assign-value');
var obj = {};
assign(obj, 'foo', {a: 'b'})
// obj.foo ==> {a: 'b'}
var obj = {foo: {a: 'b'}};
assign(obj, 'foo', {c: 'd'})
// obj.foo ==> {a: 'b', c: 'd'}
var obj = {};
assign(obj, 'a.b.c', {one: 'two'});
assign(obj, 'a.b.c', {three: 'four'});
// obj.a.b.c ==> {one: 'two', three: 'four'}
a.b.c) to get a nested value from an object. | homepage'a.b.c') paths. | homepageInstall dev dependencies:
$ npm i -d && npm test
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Jon Schlinkert
Copyright © 2015 Jon Schlinkert Released under the MIT license.
This file was generated by verb-cli on October 02, 2015.
FAQs
Assign a value or extend a deeply nested property of an object using object path notation.
The npm package assign-value receives a total of 441 weekly downloads. As such, assign-value popularity was classified as not popular.
We found that assign-value 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
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.