clangd/.github/actions/pick/node_modules/is-buffer
Kirill Bobyrev 504e724a5b
Install action dependencies directly into node_modules
This allows skipping `npm install` step in the workflow and enables
other projects to use the step without copying/cloning the code.

https://docs.github.com/en/free-pro-team@latest/actions/creating-actions/creating-a-javascript-action#commit-tag-and-push-your-action-to-github
2020-10-02 12:49:40 +02:00
..
test Install action dependencies directly into node_modules 2020-10-02 12:49:40 +02:00
index.js Install action dependencies directly into node_modules 2020-10-02 12:49:40 +02:00
LICENSE Install action dependencies directly into node_modules 2020-10-02 12:49:40 +02:00
package.json Install action dependencies directly into node_modules 2020-10-02 12:49:40 +02:00
README.md Install action dependencies directly into node_modules 2020-10-02 12:49:40 +02:00

is-buffer travis npm downloads javascript style guide

Determine if an object is a Buffer (including the browserify Buffer)

saucelabs

Why not use Buffer.isBuffer?

This module lets you check if an object is a Buffer without using Buffer.isBuffer (which includes the whole buffer module in browserify).

It's future-proof and works in node too!

install

npm install is-buffer

usage

var isBuffer = require('is-buffer')

isBuffer(new Buffer(4)) // true

isBuffer(undefined) // false
isBuffer(null) // false
isBuffer('') // false
isBuffer(true) // false
isBuffer(false) // false
isBuffer(0) // false
isBuffer(1) // false
isBuffer(1.0) // false
isBuffer('string') // false
isBuffer({}) // false
isBuffer(function foo () {}) // false

license

MIT. Copyright (C) Feross Aboukhadijeh.