(x)
| 55298 | return typeof Response !== "undefined" && x instanceof Response || x && x.arrayBuffer && x.text && x.json; |
| 55299 | }; |
| 55300 | var isFile = function isFile(x) { |
| 55301 | return typeof File !== "undefined" && x instanceof File; |
| 55302 | }; |
| 55303 | var isBlob = function isBlob(x) { |
| 55304 | return typeof Blob !== "undefined" && x instanceof Blob; |
| 55305 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected