* 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)
| 13867 | * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`. |
| 13868 | */ |
| 13869 | function baseIsArrayBuffer(value) { |
| 13870 | return isObjectLike(value) && baseGetTag(value) == arrayBufferTag; |
| 13871 | } |
| 13872 | |
| 13873 | /** |
| 13874 | * The base implementation of `_.isDate` without Node.js optimizations. |
nothing calls this directly
no test coverage detected