UNPKG

@codegouvfr/react-dsfr

Version:

French State Design System React integration library

9 lines 433 B
/** * Creates an array of elements split into two groups, the first of which contains elements * `predicate` returns truthy for, the second of which contains elements `predicate` returns * falsy for. The predicate is invoked with one argument: (value). */ export function partition(arr, predicate) { return [arr.filter(value => predicate(value)), arr.filter(item => !predicate(item))]; } //# sourceMappingURL=partition.js.map