import { take as Ltake } from "lodash"; export function take(n: number, xs: T[]): T[] { return Ltake(xs, n); }