isBoolean.js 158 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 var isKind = require('./isKind'); /** */ function isBoolean(val) { return isKind(val, 'Boolean'); } module.exports = isBoolean;