(x)
| 120 | } |
| 121 | |
| 122 | export function isObject (x) { |
| 123 | return !!(x && |
| 124 | typeof x === 'object' && |
| 125 | x.constructor === Object && |
| 126 | !isComplex(x) && |
| 127 | !isFraction(x)) |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Returns `true` if the passed object appears to be a Map (i.e. duck typing). |
no test coverage detected
searching dependent graphs…