(obj)
| 652 | } |
| 653 | |
| 654 | function isFunction(obj) { |
| 655 | return typeof obj === "function" || !!(obj && obj.constructor && obj.call && obj.apply); |
| 656 | } |
| 657 | |
| 658 | function isReallyNaN(val) { |
| 659 | return typeof val === 'number' && isNaN(val); |
no outgoing calls
no test coverage detected
searching dependent graphs…