Skip to content
Permalink
master
Go to file
3 contributors

Users who have contributed to this file

@jdalton @falsyvalues @anatoliy8493
35 lines (28 sloc) 1.05 KB
import root from './.internal/root.js'
/** Detect free variable `exports`. */
const freeExports = typeof exports === 'object' && exports !== null && !exports.nodeType && exports
/** Detect free variable `module`. */
const freeModule = freeExports && typeof module === 'object' && module !== null && !module.nodeType && module
/** Detect the popular CommonJS extension `module.exports`. */
const moduleExports = freeModule && freeModule.exports === freeExports
/** Built-in value references. */
const Buffer = moduleExports ? root.Buffer : undefined
/* Built-in method references for those with the same name as other `lodash` methods. */
const nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined
/**
* Checks if `value` is a buffer.
*
* @since 4.3.0
* @category Lang
* @param {*} value The value to check.
* @returns {boolean} Returns `true` if `value` is a buffer, else `false`.
* @example
*
* isBuffer(new Buffer(2))
* // => true
*
* isBuffer(new Uint8Array(2))
* // => false
*/
const isBuffer = nativeIsBuffer || (() => false)
export default isBuffer
You can’t perform that action at this time.