peach a19a732be8 commit message | 2 年 前 | |
---|---|---|
.. | ||
.github | 2 年 前 | |
test | 2 年 前 | |
.editorconfig | 2 年 前 | |
.eslintignore | 2 年 前 | |
.eslintrc | 2 年 前 | |
.nycrc | 2 年 前 | |
CHANGELOG.md | 2 年 前 | |
LICENSE | 2 年 前 | |
README.md | 2 年 前 | |
index.js | 2 年 前 | |
package.json | 2 年 前 |
Is this value a JS Boolean? This module works cross-realm/iframe, and despite ES6 @@toStringTag.
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)));
Simply clone the repo, npm install
, and run npm test