mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 01:17:50 +00:00
Remove references to _.
This commit is contained in:
@@ -8,17 +8,16 @@ const nodeIsArrayBuffer = nodeUtil && nodeUtil.isArrayBuffer;
|
||||
* Checks if `value` is classified as an `ArrayBuffer` object.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
* @since 4.3.0
|
||||
* @category Lang
|
||||
* @param {*} value The value to check.
|
||||
* @returns {boolean} Returns `true` if `value` is an array buffer, else `false`.
|
||||
* @example
|
||||
*
|
||||
* _.isArrayBuffer(new ArrayBuffer(2));
|
||||
* isArrayBuffer(new ArrayBuffer(2));
|
||||
* // => true
|
||||
*
|
||||
* _.isArrayBuffer(new Array(2));
|
||||
* isArrayBuffer(new Array(2));
|
||||
* // => false
|
||||
*/
|
||||
const isArrayBuffer = nodeIsArrayBuffer
|
||||
|
||||
Reference in New Issue
Block a user