mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +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';
|
|
};
|