MCPcopy
hub / github.com/lodash/lodash / baseIsArrayBuffer

Function baseIsArrayBuffer

lodash.js:3285–3287  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 2

isObjectLikeFunction · 0.85
baseGetTagFunction · 0.85

Tested by

no test coverage detected