is-boolean.js 118 Bytes
module.exports = function isBoolean (value) {
  return Object.prototype.toString.call(value) === '[object Boolean]'
}