MCPcopy Create free account
hub / github.com/DanWahlin/CustomerManagerStandard / __classof

Function __classof

CustomerManager/Scripts/breeze.debug.js:543–551  ·  view source on GitHub ↗
(o)

Source from the content-addressed store, hash-verified

541 }
542
543 function __classof(o) {
544 if (o === null) {
545 return "null";
546 }
547 if (o === undefined) {
548 return "undefined";
549 }
550 return Object.prototype.toString.call(o).slice(8, -1).toLowerCase();
551 }
552
553 function __isDate(o) {
554 return __classof(o) === "date" && !isNaN(o.getTime());

Callers 2

__isDateFunction · 0.85
__isFunctionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected