SIGN IN SIGN UP
JedWatson / react-select UNCLAIMED

The Select Component for React.js

0 0 0 TypeScript
2021-01-24 10:29:47 -05:00
/**
* Alternative to Array.isArray that correctly narrows the type for readonly arrays.
*/
export default function isArray<T>(arg: unknown): arg is readonly T[] {
return Array.isArray(arg);
}