Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

partition.js 281B

123456789
  1. import { not } from '../util/not';
  2. import { filter } from './filter';
  3. export function partition(predicate, thisArg) {
  4. return (source) => [
  5. filter(predicate, thisArg)(source),
  6. filter(not(predicate, thisArg))(source)
  7. ];
  8. }
  9. //# sourceMappingURL=partition.js.map