UNPKG

@gerhobbelt/mathjax-third-party-extensions

Version:

A list of MathJax extensions provided by third-party contributors

9 lines 281 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