(value)
| 229 | } |
| 230 | |
| 231 | function getTag(value) { |
| 232 | if (value == null) { |
| 233 | return value === undefined ? '[object Undefined]' : '[object Null]'; |
| 234 | } |
| 235 | return Object.prototype.toString.call(value); |
| 236 | } |
| 237 | |
| 238 | export function isObject(value) { |
| 239 | const type = typeof value; |
no outgoing calls
no test coverage detected
searching dependent graphs…