UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

8 lines 289 B
import { not } from '../util/not'; import { filter } from './filter'; export function partition(predicate, thisArg) { return function (source) { return [filter(predicate, thisArg)(source), filter(not(predicate, thisArg))(source)]; }; } //# sourceMappingURL=partition.js.map