UNPKG

416 BTypeScriptView Raw
1import { Predicate } from '../predicates/predicate';
2declare const _default: <T>(source: IterableIterator<T> | Set<T> | T[], predicate: Predicate<T>) => string | boolean;
3/**
4 * Test all the values in the collection against a provided predicate.
5 *
6 * @hidden
7 * @param source Source collection to test.
8 * @param predicate Predicate to test every item in the source collection against.
9 */
10export default _default;