(systemKey)
| 254 | } |
| 255 | |
| 256 | export function getCountingSystemLabel(systemKey) { |
| 257 | return COUNTING_SYSTEMS[systemKey]?.label || COUNTING_SYSTEMS.decimal.label; |
| 258 | } |
| 259 | |
| 260 | export function getExpectedCountValue(config) { |
| 261 | const system = COUNTING_SYSTEMS[config.system] ? config.system : 'decimal'; |