(input)
| 23 | } |
| 24 | |
| 25 | function isArray(input) { |
| 26 | return ( |
| 27 | input instanceof Array || |
| 28 | Object.prototype.toString.call(input) === '[object Array]' |
| 29 | ); |
| 30 | } |
| 31 | |
| 32 | function isObject(input) { |
| 33 | // IE8 will treat undefined and null as object if it wasn't for |
no outgoing calls
no test coverage detected
searching dependent graphs…