(a)
| 58 | |
| 59 | // Reliably test if something is any sort of javascript object |
| 60 | function isObject(a) { |
| 61 | return typeof a === 'object' && a !== null; |
| 62 | } |
| 63 | exports.isObject = isObject; |
| 64 | |
| 65 | function log() { |
no outgoing calls
no test coverage detected
searching dependent graphs…