# isBuffer [![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] > Test if a value is a [Buffer][node-buffer] object.
## Installation ```bash npm install @stdlib/assert-is-buffer ```
## Usage ```javascript var isBuffer = require( '@stdlib/assert-is-buffer' ); ``` #### isBuffer( value ) Tests if a `value` is a [`Buffer`][node-buffer] object. ```javascript var Buffer = require( '@stdlib/buffer-ctor' ); var value = new Buffer( [ 1, 2, 3, 4 ] ); var bool = isBuffer( value ); // returns true ```
## Notes - The implementation supports both [Node.js][node-buffer] and [browser polyfill][browser-buffer] `Buffer` objects.
## Examples ```javascript var Int8Array = require( '@stdlib/array-int8' ); var Buffer = require( '@stdlib/buffer-ctor' ); var isBuffer = require( '@stdlib/assert-is-buffer' ); var bool = isBuffer( new Buffer( [ 1, 2, 3, 4 ] ) ); // returns true bool = isBuffer( new Buffer( 'beep' ) ); // returns true bool = isBuffer( [] ); // returns false bool = isBuffer( {} ); // returns false bool = isBuffer( new Int8Array() ); // returns false bool = isBuffer( function foo() {} ); // returns false bool = isBuffer( null ); // returns false bool = isBuffer( void 0 ); // returns false bool = isBuffer( 'beep' ); // returns false bool = isBuffer( 5 ); // returns false ```
* * * ## Notice This package is part of [stdlib][stdlib], a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more. For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib]. #### Community [![Chat][chat-image]][chat-url] --- ## License See [LICENSE][stdlib-license]. ## Copyright Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].