(it)
| 77 | return it !== null && (typeof it == 'object' || typeof it == 'function'); |
| 78 | } |
| 79 | function isFunction(it){ |
| 80 | return typeof it == 'function'; |
| 81 | } |
| 82 | // Native function? |
| 83 | var isNative = ctx(/./.test, /\[native code\]\s*\}\s*$/, 1); |
| 84 |
no outgoing calls
no test coverage detected