(ct: string | null | undefined)
| 255 | normalizeContentType(ct).startsWith("text/"); |
| 256 | |
| 257 | const isOctetStream = (ct: string | null | undefined): boolean => |
| 258 | normalizeContentType(ct) === "application/octet-stream"; |
| 259 | |
| 260 | const decodeJsonLine = Schema.decodeUnknownExit(Schema.fromJsonString(Schema.Unknown)); |
| 261 |
no test coverage detected