UNPKG

rubico

Version:

[a]synchronous functional programming

18 lines (17 loc) 371 B
export = callPropUnary; /** * @name callPropUnary * * @synopsis * ```coffeescript [specscript] * callPropUnary( * value object, * property string, * arg0 any, * ) -> value[property](arg0) * ``` * * @description * Call a property function on a value with a single argument. */ declare function callPropUnary(value: any, property: any, arg0: any): any;