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 385B

123456789101112
  1. /** PURE_IMPORTS_START _util_not,_filter PURE_IMPORTS_END */
  2. import { not } from '../util/not';
  3. import { filter } from './filter';
  4. export function partition(predicate, thisArg) {
  5. return function (source) {
  6. return [
  7. filter(predicate, thisArg)(source),
  8. filter(not(predicate, thisArg))(source)
  9. ];
  10. };
  11. }
  12. //# sourceMappingURL=partition.js.map