(opt: string)
| 158 | } |
| 159 | |
| 160 | function parseNotationOptions(opt: string): ExtendedNumberFormatOptions { |
| 161 | const result: ExtendedNumberFormatOptions = {} |
| 162 | const signOpts = parseSign(opt) |
| 163 | if (signOpts) { |
| 164 | return signOpts |
| 165 | } |
| 166 | return result |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * https://github.com/unicode-org/icu/blob/master/docs/userguide/format_parse/numbers/skeletons.md#skeleton-stems-and-options |
no test coverage detected