(hint: OperationFileHint, fallback: string)
| 487 | Option.getOrElse(option, () => fallback); |
| 488 | |
| 489 | const readHintMimeType = (hint: OperationFileHint, fallback: string): string => |
| 490 | Option.getOrElse(hint.mimeType, () => fallback); |
| 491 | |
| 492 | const readHintEncoding = (hint: OperationFileHint): "base64" | "base64url" => |
| 493 | Option.getOrElse(hint.encoding, () => "base64"); |
no outgoing calls
no test coverage detected