rubico
Version:
[a]synchronous functional programming
15 lines (14 loc) • 324 B
TypeScript
export = objectReduce;
/**
* @name objectReduce
*
* @synopsis
* ```coffeescript [specscript]
* objectReduce(
* object Object,
* reducer (any, item any, key string, object)=>Promise|any,
* result any,
* ) -> Promise|result
* ```
*/
declare function objectReduce(object: any, reducer: any, result: any): any;