@development-environment/linting
Version:
Automatically catches many issues as they happen
1 lines • 97 B
text/typescript
export const isArrayLike = (<T>(x: any): x is ArrayLike<T> => x && typeof x.length === 'number');
Automatically catches many issues as they happen