zhangyanpeng
2024-08-04 339ff20970bc921cd28413d36a72685a771a6098
1
2
3
4
5
6
7
8
9
10
11
/*!
 * 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)
}