mingo
Version:
MongoDB query language for in-memory objects
18 lines (17 loc) • 519 B
JavaScript
import {
ComputeOptions,
computeValue
} from "../../core";
import { compare, isNil } from "../../util";
import { $push } from "./push";
const $maxN = (collection, expr, options) => {
const copts = ComputeOptions.init(options);
const m = collection.length;
const n = computeValue(copts?.local?.groupId, expr.n, null, copts);
const arr = $push(collection, expr.input, options).filter((o) => !isNil(o));
arr.sort((a, b) => -1 * compare(a, b));
return m <= n ? arr : arr.slice(0, n);
};
export {
$maxN
};