UNPKG

react-kiwi-dropdown

Version:

A minimal, easy-to-use and highly adjustable dropdown component made with ReactJS.

9 lines 281 B
import { not } from '../util/not'; import { filter } from './filter'; export function partition(predicate, thisArg) { return (source) => [ filter(predicate, thisArg)(source), filter(not(predicate, thisArg))(source) ]; } //# sourceMappingURL=partition.js.map