* Checks if `value` is classified as a typed array. * * @static * @memberOf _ * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. * @example * * _.isTypedArray(new U
(value)
| 10428 | * // => false |
| 10429 | */ |
| 10430 | function isTypedArray(value) { |
| 10431 | return isObjectLike(value) && isLength(value.length) && !!typedArrayTags[objToString.call(value)]; |
| 10432 | } |
| 10433 | |
| 10434 | /** |
| 10435 | * Checks if `value` is `undefined`. |
no test coverage detected