UNPKG

rubico

Version:

[a]synchronous functional programming

14 lines (13 loc) 268 B
export = objectFilter; /** * @name objectFilter * * @synopsis * ```coffeescript [specscript] * objectFilter<T>( * object Object<T>, * predicate T=>boolean, * ) -> result Object<T> * ``` */ declare function objectFilter(object: any, predicate: any): any;