MCPcopy Create free account
hub / github.com/deployd/deployd / baseIsArrayBuffer

Function baseIsArrayBuffer

test-app/public/sinon.js:13869–13871  ·  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

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.

Callers

nothing calls this directly

Calls 2

isObjectLikeFunction · 0.85
baseGetTagFunction · 0.85

Tested by

no test coverage detected