PHP 8.2.30
Preview: index.js Size: 698 B
/home/byroehnu/.trash/node_modules11/is-buffer/index.js

/*!
 * Determine if an object is a Buffer
 *
 * @author   Feross Aboukhadijeh <https://feross.org>
 * @license  MIT
 */

// The _isBuffer check is for Safari 5-7 support, because it's missing
// Object.prototype.constructor. Remove this eventually
module.exports = function (obj) {
  return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)
}

function isBuffer (obj) {
  return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
}

// For Node v0.10 support. Remove this eventually.
function isSlowBuffer (obj) {
  return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
}

Directory Contents

Dirs: 1 × Files: 4

Name Size Perms Modified Actions
test DIR
- drwxr-xr-x 2026-02-21 00:53:24
Edit Download
698 B lrw-r--r-- 2026-02-21 00:53:22
Edit Download
1.06 KB lrw-r--r-- 2026-02-21 00:53:22
Edit Download
1.07 KB lrw-r--r-- 2026-02-21 00:53:20
Edit Download
1.70 KB lrw-r--r-- 2026-02-21 00:53:24
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).