(obj)
| 1314 | return !!(obj != null && typeof obj[Symbol.asyncIterator] === "function"); |
| 1315 | } |
| 1316 | function isIterable(obj) { |
| 1317 | return !!(obj != null && (typeof obj[Symbol.iterator] === "function" || typeof obj[Symbol.asyncIterator] === "function")); |
| 1318 | } |
| 1319 | function bodyLength(body) { |
| 1320 | if (body == null) { |
| 1321 | return 0; |
no outgoing calls
no test coverage detected