github-pages-deploy-action/node_modules/is-callable
2020-03-31 08:57:48 -04:00
..
.github Release 2020-03-21 17:13:25 -04:00
test Release 2020-03-21 17:13:25 -04:00
.editorconfig Dependencies Required 2020-01-28 00:07:56 -05:00
.eslintrc Dependencies Required 2020-01-28 00:07:56 -05:00
.istanbul.yml Dependencies Required 2020-01-28 00:07:56 -05:00
.travis.yml Release 2020-03-21 17:13:25 -04:00
CHANGELOG.md Release 2020-03-21 17:13:25 -04:00
index.js Dependencies Required 2020-01-28 00:07:56 -05:00
LICENSE Dependencies Required 2020-01-28 00:07:56 -05:00
package.json 3.4.3 Dependencies 2020-03-31 08:57:48 -04:00
README.md Dependencies Required 2020-01-28 00:07:56 -05: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