(hint: OperationFileHint, fallback: string)
| 528 | Option.getOrElse(option, () => fallback); |
| 529 | |
| 530 | const readHintMimeType = (hint: OperationFileHint, fallback: string): string => |
| 531 | Option.getOrElse(hint.mimeType, () => fallback); |
| 532 | |
| 533 | const readHintEncoding = (hint: OperationFileHint): "base64" | "base64url" => |
| 534 | Option.getOrElse(hint.encoding, () => "base64"); |
no outgoing calls
no test coverage detected