It will determine whether the provided value is a Buffer or not.
value
1.0.0
isBuffer(new Buffer(2));// => true Copy
isBuffer(new Buffer(2));// => true
isBuffer(new Uint8Array(2));// => false Copy
isBuffer(new Uint8Array(2));// => false
It will determine whether the provided
value
is a Buffer or not.