UNPKG

rubico

Version:

[a]synchronous functional programming

19 lines (18 loc) 403 B
export = callPropBinary; /** * @name callPropBinary * * @synopsis * ```coffeescript [specscript] * callPropBinary( * value object, * property string, * arg0 any, * arg1 any, * ) -> value[property](arg0, arg1) * ``` * * @description * Call a property function on a value with two arguments. */ declare function callPropBinary(value: any, property: any, arg0: any, arg1: any): any;