* The base implementation of `_.isTypedArray` without Node.js optimizations. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.
(value)
| 14075 | * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. |
| 14076 | */ |
| 14077 | function baseIsTypedArray(value) { |
| 14078 | return isObjectLike(value) && |
| 14079 | isLength(value.length) && !!typedArrayTags[baseGetTag(value)]; |
| 14080 | } |
| 14081 | |
| 14082 | /** |
| 14083 | * The base implementation of `_.iteratee`. |
nothing calls this directly
no test coverage detected