(obj)
| 6318 | return convert(buffer, "UTF-8", charset).toString(); |
| 6319 | } |
| 6320 | function isURLSearchParams2(obj) { |
| 6321 | if (typeof obj !== "object" || typeof obj.append !== "function" || typeof obj.delete !== "function" || typeof obj.get !== "function" || typeof obj.getAll !== "function" || typeof obj.has !== "function" || typeof obj.set !== "function") { |
| 6322 | return false; |
| 6323 | } |
| 6324 | return obj.constructor.name === "URLSearchParams" || Object.prototype.toString.call(obj) === "[object URLSearchParams]" || typeof obj.sort === "function"; |
| 6325 | } |
| 6326 | function isBlob4(obj) { |
| 6327 | return typeof obj === "object" && typeof obj.arrayBuffer === "function" && typeof obj.type === "string" && typeof obj.stream === "function" && typeof obj.constructor === "function" && typeof obj.constructor.name === "string" && /^(Blob|File)$/.test(obj.constructor.name) && /^(Blob|File)$/.test(obj[Symbol.toStringTag]); |
| 6328 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…