Files
feedstr.live/node_modules/underscore/amd/isBoolean.js
T
2023-11-25 18:12:47 -05:00

11 lines
227 B
JavaScript

define(['./_setup'], function (_setup) {
// Is a given value a boolean?
function isBoolean(obj) {
return obj === true || obj === false || _setup.toString.call(obj) === '[object Boolean]';
}
return isBoolean;
});