mirror of
https://github.com/Azure/setup-helm.git
synced 2025-11-07 21:16:57 +00:00
8 lines
218 B
JavaScript
8 lines
218 B
JavaScript
var _setup = require('./_setup.js');
|
|
|
|
// Is a given value a boolean?
|
|
function isBoolean(obj) {
|
|
return obj === true || obj === false || _setup.toString.call(obj) === '[object Boolean]';
|
|
}
|
|
|
|
module.exports = isBoolean;
|