UNPKG

185 BJavaScriptView Raw
1'use strict'
2
3/**
4 * Test whether value is a boolean
5 * @param {*} value
6 * @return {boolean} isBoolean
7 */
8exports.isBoolean = function (value) {
9 return typeof value === 'boolean'
10}