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

Function isNumberObject

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

Source from the content-addressed store, hash-verified

1443 return obj && typeof obj === "object" && Function.prototype.toString.call(obj.constructor) === "function String() { [native code] }";
1444}
1445function isNumberObject(obj) {
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}

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected