UNPKG

rubico

Version:

[a]synchronous functional programming

17 lines (16 loc) 353 B
export = reducerSome; /** * @name reducerSome * * @synopsis * ```coffeescript [specscript] * reducerSome( * predicate any=>boolean, * ) -> anyReducer (result boolean, item any)=>boolean * ``` * * @related foldableAllReducer * * @TODO throw to break early? */ declare function reducerSome(predicate: any): (result: any, item: any) => any;