(obj)
| 1449 | return obj && typeof obj === "object" && Function.prototype.toString.call(obj.constructor) === "function Boolean() { [native code] }"; |
| 1450 | } |
| 1451 | function isDate$1(obj) { |
| 1452 | if (obj && typeof obj === "object") { |
| 1453 | return !!(obj.getFullYear && obj.getMonth && obj.getDate); |
| 1454 | } else { |
| 1455 | return false; |
| 1456 | } |
| 1457 | } |
| 1458 | function defined(obj) { |
| 1459 | return typeof obj != "undefined"; |
| 1460 | } |