(niceValue: string | number)
| 10 | } from '@msrvida/search-expression'; |
| 11 | |
| 12 | export function notNice(niceValue: string | number) { |
| 13 | //convert "nice" numbers to numeric value |
| 14 | return (niceValue + '').replace(/[\s,]/g, ''); |
| 15 | } |
| 16 | |
| 17 | function tickValue(axis: VegaDeckGl.types.Axis, i: number) { |
| 18 | const tick = axis.tickText[i]; |
no test coverage detected