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

7 lines
133 B
TypeScript

import type {IntoInterator} from './types';
export default function includes<T>(
target: IntoInterator<T>,
value: T
): boolean;