(ct: string | null | undefined)
| 250 | normalizeContentType(ct).startsWith("text/"); |
| 251 | |
| 252 | const isOctetStream = (ct: string | null | undefined): boolean => |
| 253 | normalizeContentType(ct) === "application/octet-stream"; |
| 254 | |
| 255 | const decodeJsonLine = Schema.decodeUnknownExit(Schema.fromJsonString(Schema.Unknown)); |
| 256 |
no test coverage detected