mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
11 lines
186 B
JavaScript
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';
|
|
};
|