(x)
| 55292 | return x && typeof x[Symbol.asyncIterator] === "function"; |
| 55293 | }; |
| 55294 | var isIterator = function isIterator(x) { |
| 55295 | return x && isFunction(x.next); |
| 55296 | }; |
| 55297 | var isResponse = function isResponse(x) { |
| 55298 | return typeof Response !== "undefined" && x instanceof Response || x && x.arrayBuffer && x.text && x.json; |
| 55299 | }; |
nothing calls this directly
no test coverage detected