Setvalue Set a nested value from an object by path. Installation npm install setvalue --save Usage import { set } from 'setvalue' const obj = { a: 'prop' } set(obj, ['a', 'b', 'c'], 10) //=> { a: { b: { c: 10 } } } License Apache 2.0