(hint: OperationFileHint, fallback: string)
| 494 | Option.getOrElse(option, () => fallback); |
| 495 | |
| 496 | const readHintMimeType = (hint: OperationFileHint, fallback: string): string => |
| 497 | Option.getOrElse(hint.mimeType, () => fallback); |
| 498 | |
| 499 | const readHintEncoding = (hint: OperationFileHint): "base64" | "base64url" => |
| 500 | Option.getOrElse(hint.encoding, () => "base64"); |
no outgoing calls
no test coverage detected