UNPKG

rubico

Version:

[a]synchronous functional programming

15 lines (14 loc) 292 B
export = setByPath; /** * @name setByPath * * @synopsis * ```coffeescript [specscript] * setByPath< * obj any, * value any, * path string|number|Array<string|number>, * >(obj, value, path) -> obj any * ``` */ declare function setByPath(obj: any, value: any, path: any): any;