install-nix-action/node_modules/is-callable
Domen Kožar 08403cd828
v5
2019-11-13 17:14:48 +01:00
..
.editorconfig v5 2019-11-13 17:14:48 +01:00
.eslintrc v5 2019-11-13 17:14:48 +01:00
.istanbul.yml v5 2019-11-13 17:14:48 +01:00
.jscs.json v5 2019-11-13 17:14:48 +01:00
.travis.yml v5 2019-11-13 17:14:48 +01:00
CHANGELOG.md v5 2019-11-13 17:14:48 +01:00
index.js v5 2019-11-13 17:14:48 +01:00
LICENSE v5 2019-11-13 17:14:48 +01:00
Makefile v5 2019-11-13 17:14:48 +01:00
package.json v5 2019-11-13 17:14:48 +01:00
README.md v5 2019-11-13 17:14:48 +01:00
test.js v5 2019-11-13 17:14:48 +01:00

is-callable Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

browser support

Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.

Example

var isCallable = require('is-callable');
var assert = require('assert');

assert.notOk(isCallable(undefined));
assert.notOk(isCallable(null));
assert.notOk(isCallable(false));
assert.notOk(isCallable(true));
assert.notOk(isCallable([]));
assert.notOk(isCallable({}));
assert.notOk(isCallable(/a/g));
assert.notOk(isCallable(new RegExp('a', 'g')));
assert.notOk(isCallable(new Date()));
assert.notOk(isCallable(42));
assert.notOk(isCallable(NaN));
assert.notOk(isCallable(Infinity));
assert.notOk(isCallable(new Number(42)));
assert.notOk(isCallable('foo'));
assert.notOk(isCallable(Object('foo')));

assert.ok(isCallable(function () {}));
assert.ok(isCallable(function* () {}));
assert.ok(isCallable(x => x * x));

Tests

Simply clone the repo, npm install, and run npm test