(x)
| 55283 | return isObject(x) && x.constructor === ({}).constructor; |
| 55284 | }; |
| 55285 | var isPromise = function isPromise(x) { |
| 55286 | return isObject(x) && isFunction(x.then); |
| 55287 | }; |
| 55288 | var isIterable = function isIterable(x) { |
| 55289 | return x && typeof x[Symbol.iterator] === "function"; |
| 55290 | }; |
nothing calls this directly
no test coverage detected