* The base implementation of `_.isArrayBuffer` without Node.js optimizations. * * @private * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`.
(value)
| 3283 | * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`. |
| 3284 | */ |
| 3285 | function baseIsArrayBuffer(value) { |
| 3286 | return isObjectLike(value) && baseGetTag(value) == arrayBufferTag; |
| 3287 | } |
| 3288 | |
| 3289 | /** |
| 3290 | * The base implementation of `_.isDate` without Node.js optimizations. |
nothing calls this directly
no test coverage detected