0b136419f865734c5da05019a6ba7b8a63e6fc5a5f2d8229eb4160648d7723b97c07394721b20c6897ecc9b8233d8d81e2d784b110eee38dfd7c309b75bb63 385 B

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