mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-07 12:28:57 -05:00
12 lines
301 B
JavaScript
12 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)
|
|
}
|