MCPcopy Create free account
hub / github.com/DHTMLX/scheduler / isBooleanObject

Function isBooleanObject

codebase/sources/dhtmlxscheduler.es.js:1448–1450  ·  view source on GitHub ↗
(obj)

Source from the content-addressed store, hash-verified

1446 return obj && typeof obj === "object" && Function.prototype.toString.call(obj.constructor) === "function Number() { [native code] }";
1447}
1448function isBooleanObject(obj) {
1449 return obj && typeof obj === "object" && Function.prototype.toString.call(obj.constructor) === "function Boolean() { [native code] }";
1450}
1451function isDate$1(obj) {
1452 if (obj && typeof obj === "object") {
1453 return !!(obj.getFullYear && obj.getMonth && obj.getDate);

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected