Files
tekelanew_acs/acs/nladmin-ui/node_modules/is-buffer/index.js

12 lines
301 B
JavaScript
Raw Normal View History

2024-12-03 17:40:13 +08: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)
}