(it)
| 74 | |
| 75 | // http://jsperf.com/core-js-isobject |
| 76 | function isObject(it){ |
| 77 | return it !== null && (typeof it == 'object' || typeof it == 'function'); |
| 78 | } |
| 79 | function isFunction(it){ |
| 80 | return typeof it == 'function'; |
| 81 | } |
no outgoing calls
no test coverage detected