(x)
| 55280 | return x !== null && (0, _typeofDefault.default)(x) === "object"; |
| 55281 | }; |
| 55282 | var isPureObject = function isPureObject(x) { |
| 55283 | return isObject(x) && x.constructor === ({}).constructor; |
| 55284 | }; |
| 55285 | var isPromise = function isPromise(x) { |
| 55286 | return isObject(x) && isFunction(x.then); |
| 55287 | }; |
nothing calls this directly
no test coverage detected