/** * returns the specified amount of the provided array elements starting from the beginning * @example * take(2, ['a', 'b', 'c', 'd']) * // returns ['a', 'b'] */ export default function take(count: number, arr: T[]): T[]; //# sourceMappingURL=take.d.ts.map