(obj)
| 86 | |
| 87 | // Is a given variable an object? |
| 88 | function isObject(obj) { |
| 89 | var type = typeof obj; |
| 90 | return type === 'function' || (type === 'object' && !!obj); |
| 91 | } |
| 92 | |
| 93 | // Is a given value equal to null? |
| 94 | function isNull(obj) { |
no outgoing calls
no test coverage detected
searching dependent graphs…