9 lines
No EOL
281 B
JavaScript
9 lines
No EOL
281 B
JavaScript
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
|