UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

6 lines • 259 B
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