| DIR:/proc/thread-self/cwd/bright.medisavehealthcarebd.com/node_modules/es5-ext/boolean/ |
| Current File : //proc/thread-self/cwd/bright.medisavehealthcarebd.com/node_modules/es5-ext/boolean/is-boolean.js |
"use strict";
var objToString = Object.prototype.toString, id = objToString.call(true);
module.exports = function (value) {
return (
typeof value === "boolean" ||
(typeof value === "object" && (value instanceof Boolean || objToString.call(value) === id))
);
};
|