UNPKG

npm-check-updates

Version:

Find newer versions of dependencies than what your package.json allows

5 lines (4 loc) 221 B
import { Index } from '../types/IndexType'; /** Filters an object by a predicate. */ declare const filterObject: <T>(obj: Index<T>, predicate: (key: string, value: T) => boolean) => Index<T>; export default filterObject;