( value: string | undefined, config: SliderConfig, )
| 570 | } |
| 571 | |
| 572 | export function normalizeSliderValue( |
| 573 | value: string | undefined, |
| 574 | config: SliderConfig, |
| 575 | ): string { |
| 576 | const normalized = normalizeNumericValue(value, config); |
| 577 | return normalized || String(config.min); |
| 578 | } |
| 579 | |
| 580 | // The "double-quote class" that opens/closes a quoted option: the straight |
| 581 | // double quote plus the curly pair editors (and Obsidian) auto-substitute. The |
no test coverage detected