UNPKG

rubico

Version:

[a]synchronous functional programming

15 lines (14 loc) 262 B
export = objectSet; /** * @name objectSet * * @synopsis * ```coffeescript [specscript] * objectSet( * object Object, * property string, * value any, * ) -> object * ``` */ declare function objectSet(object: any, property: any, value: any): any;