mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
11 lines
218 B
JavaScript
11 lines
218 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Test whether value is a Boolean
|
|
* @param {*} value
|
|
* @return {Boolean} isBoolean
|
|
*/
|
|
exports.isBoolean = function(value) {
|
|
return (value instanceof Boolean) || (typeof value == 'boolean');
|
|
};
|