astro-ghostcms/.pnpm-store/v3/files/65/6abf07896fe2fca55e1880f06b8...

12 lines
301 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
/*!
* 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)
}