mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
32 lines
698 B
JavaScript
32 lines
698 B
JavaScript
import isArrayLike from './isArrayLike.js'
|
|
import isObjectLike from './isObjectLike.js'
|
|
|
|
/**
|
|
* This method is like `isArrayLike` except that it also checks if `value`
|
|
* is an object.
|
|
*
|
|
* @since 4.0.0
|
|
* @category Lang
|
|
* @param {*} value The value to check.
|
|
* @returns {boolean} Returns `true` if `value` is an array-like object,
|
|
* else `false`.
|
|
* @example
|
|
*
|
|
* isArrayLikeObject([1, 2, 3])
|
|
* // => true
|
|
*
|
|
* isArrayLikeObject(document.body.children)
|
|
* // => true
|
|
*
|
|
* isArrayLikeObject('abc')
|
|
* // => false
|
|
*
|
|
* isArrayLikeObject(Function)
|
|
* // => false
|
|
*/
|
|
function isArrayLikeObject(value) {
|
|
return isObjectLike(value) && isArrayLike(value)
|
|
}
|
|
|
|
export default isArrayLikeObject
|