(ct: string | null | undefined)
| 209 | normalizeContentType(ct).startsWith("text/"); |
| 210 | |
| 211 | const isOctetStream = (ct: string | null | undefined): boolean => |
| 212 | normalizeContentType(ct) === "application/octet-stream"; |
| 213 | |
| 214 | const decodeJsonLine = Schema.decodeUnknownExit(Schema.fromJsonString(Schema.Unknown)); |
| 215 |
no test coverage detected