Files
2026-02-25 00:50:23 +05:30

7 lines
133 B
TypeScript

import type {IntoInterator} from './types';
export default function take<T>(
iterator: IntoInterator<T>,
n: number
): Array<T>;