is-boolean.js 135 Bytes Raw Blame History Permalink 1 2 3 4 "use strict"; module.exports = function isBoolean(value) { return Object.prototype.toString.call(value) === '[object Boolean]'; };