(value: string)
| 16 | }; |
| 17 | |
| 18 | function isNullishDisplayString(value: string): boolean { |
| 19 | return NULLISH_DISPLAY_STRINGS.has(value.trim().toLowerCase()); |
| 20 | } |
| 21 | |
| 22 | export function isBasesValue(value: unknown): value is RenderableBasesValue { |
| 23 | return ( |
no test coverage detected