Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011
  1. /*!
  2. * Determine if an object is a Buffer
  3. *
  4. * @author Feross Aboukhadijeh <https://feross.org>
  5. * @license MIT
  6. */
  7. module.exports = function isBuffer (obj) {
  8. return obj != null && obj.constructor != null &&
  9. typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
  10. }