sensordb2 e64a8defe5 3.17 hai 1 ano
..
.github e64a8defe5 3.17 hai 1 ano
test e64a8defe5 3.17 hai 1 ano
.editorconfig e64a8defe5 3.17 hai 1 ano
.eslintignore e64a8defe5 3.17 hai 1 ano
.eslintrc e64a8defe5 3.17 hai 1 ano
.nycrc e64a8defe5 3.17 hai 1 ano
CHANGELOG.md e64a8defe5 3.17 hai 1 ano
LICENSE e64a8defe5 3.17 hai 1 ano
README.md e64a8defe5 3.17 hai 1 ano
index.js e64a8defe5 3.17 hai 1 ano
package.json e64a8defe5 3.17 hai 1 ano

README.md

is-boolean-object Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Is this value a JS Boolean? This module works cross-realm/iframe, and despite ES6 @@toStringTag.

Example

var isBoolean = require('is-boolean-object');
var assert = require('assert');

assert.notOk(isBoolean(undefined));
assert.notOk(isBoolean(null));
assert.notOk(isBoolean('foo'));
assert.notOk(isBoolean(function () {}));
assert.notOk(isBoolean([]));
assert.notOk(isBoolean({}));
assert.notOk(isBoolean(/a/g));
assert.notOk(isBoolean(new RegExp('a', 'g')));
assert.notOk(isBoolean(new Date()));
assert.notOk(isBoolean(42));
assert.notOk(isBoolean(NaN));
assert.notOk(isBoolean(Infinity));

assert.ok(isBoolean(new Boolean(42)));
assert.ok(isBoolean(false));
assert.ok(isBoolean(Object(false)));
assert.ok(isBoolean(true));
assert.ok(isBoolean(Object(true)));

Tests

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