(thing)
| 167 | * @returns {boolean} True if value is an Object, otherwise false |
| 168 | */ |
| 169 | const isObject = (thing) => thing !== null && typeof thing === 'object'; |
| 170 | |
| 171 | /** |
| 172 | * Determine if a value is a Boolean |
no outgoing calls
no test coverage detected