(ct: string | null | undefined)
| 216 | normalizeContentType(ct).startsWith("text/"); |
| 217 | |
| 218 | const isOctetStream = (ct: string | null | undefined): boolean => |
| 219 | normalizeContentType(ct) === "application/octet-stream"; |
| 220 | |
| 221 | const decodeJsonLine = Schema.decodeUnknownExit(Schema.fromJsonString(Schema.Unknown)); |
| 222 |
no test coverage detected