isBoolean.js 218 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 var _setup = require('./_setup.js'); // Is a given value a boolean? function isBoolean(obj) { return obj === true || obj === false || _setup.toString.call(obj) === '[object Boolean]'; } module.exports = isBoolean;