install-nix-action/node_modules/is-callable
Domen Kožar 49df04613e
v7
2020-02-24 13:29:22 +01:00
..
.editorconfig v7 2020-02-24 13:29:22 +01:00
.eslintrc v7 2020-02-24 13:29:22 +01:00
.istanbul.yml v7 2020-02-24 13:29:22 +01:00
.jscs.json v7 2020-02-24 13:29:22 +01:00
.travis.yml v7 2020-02-24 13:29:22 +01:00
CHANGELOG.md v7 2020-02-24 13:29:22 +01:00
index.js v7 2020-02-24 13:29:22 +01:00
LICENSE v7 2020-02-24 13:29:22 +01:00
Makefile v7 2020-02-24 13:29:22 +01:00
package.json v7 2020-02-24 13:29:22 +01:00
README.md v7 2020-02-24 13:29:22 +01:00
test.js v7 2020-02-24 13:29:22 +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