8 lines
198 B
JavaScript
8 lines
198 B
JavaScript
import { isLength } from '../../predicate/isLength.mjs';
|
|
|
|
function isArrayLike(value) {
|
|
return value != null && typeof value !== 'function' && isLength(value.length);
|
|
}
|
|
|
|
export { isArrayLike };
|