( argumentOption: Single )
| 987 | const makeFullName = (str: string): [boolean, string] => str.length === 1 ? [true, `-${str}`] : [false, `--${str}`] |
| 988 | |
| 989 | const makeKeyValueMap = ( |
| 990 | argumentOption: Single |
| 991 | ): Options.Options<HashMap.HashMap<string, string>> => { |
| 992 | const op = Object.create(proto) |
| 993 | op._tag = "KeyValueMap" |
| 994 | op.argumentOption = argumentOption |
| 995 | return op |
| 996 | } |
| 997 | |
| 998 | const makeMap = <A, B>( |
| 999 | options: Options.Options<A>, |
no test coverage detected