setup-java/node_modules/is-callable
Stephen Franceschelli c1a589c5b6 Fix.
2019-07-30 13:41:05 -04:00
..
.editorconfig Fix. 2019-07-30 13:41:05 -04:00
.eslintrc Fix. 2019-07-30 13:41:05 -04:00
.istanbul.yml Fix. 2019-07-30 13:41:05 -04:00
.jscs.json Fix. 2019-07-30 13:41:05 -04:00
.travis.yml Fix. 2019-07-30 13:41:05 -04:00
CHANGELOG.md Fix. 2019-07-30 13:41:05 -04:00
index.js Fix. 2019-07-30 13:41:05 -04:00
LICENSE Fix. 2019-07-30 13:41:05 -04:00
Makefile Fix. 2019-07-30 13:41:05 -04:00
package.json Fix. 2019-07-30 13:41:05 -04:00
README.md Fix. 2019-07-30 13:41:05 -04:00
test.js Fix. 2019-07-30 13:41:05 -04: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