(value)
| 13 | return own.hasOwnProperty(prop); |
| 14 | } |
| 15 | function isObject(value) { |
| 16 | var type = typeof value; |
| 17 | return type === 'function' || (!!value && type === 'object'); |
| 18 | } |
| 19 | function isArray(value) { |
| 20 | if (Array.isArray) { |
| 21 | return Array.isArray(value); |
no outgoing calls
no test coverage detected
searching dependent graphs…