minimal-gatsby-backend/node_modules/is-buffer/index.js
2020-02-18 22:53:38 -05:00

11 lines
301 B
JavaScript

/*!
* Determine if an object is a Buffer
*
* @author Feross Aboukhadijeh <https://feross.org>
* @license MIT
*/
module.exports = function isBuffer (obj) {
return obj != null && obj.constructor != null &&
typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
}