* Return `true` if the parameter is a boolean * * @static * @param {*} value * @returns {boolean}
(value)
| 94 | * @returns {boolean} |
| 95 | */ |
| 96 | static isBoolean(value) { |
| 97 | return typeof(value) === 'boolean'; |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * Return `true` if the parameter is a string 'true' or 'false' |
no outgoing calls
no test coverage detected