(definition)
| 683 | } |
| 684 | |
| 685 | static isClass(definition) { |
| 686 | return ( |
| 687 | typeof definition === "function" && |
| 688 | Boolean(definition.prototype) && |
| 689 | definition.prototype.constructor === definition |
| 690 | ) |
| 691 | } |
| 692 | static isConstructor(definition) { |
| 693 | return typeof definition === "function" |
| 694 | } |