(o)
| 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()); |
no outgoing calls
no test coverage detected