mathjs/lib/utils/boolean.js
2015-07-18 13:22:38 +02:00

11 lines
186 B
JavaScript

'use strict';
/**
* Test whether value is a boolean
* @param {*} value
* @return {boolean} isBoolean
*/
exports.isBoolean = function(value) {
return typeof value == 'boolean';
};