| 85 | } |
| 86 | |
| 87 | interface FormattedValue { |
| 88 | text: string |
| 89 | isNegative: boolean |
| 90 | isKeyword: boolean |
| 91 | } |
| 92 | |
| 93 | function isSide(f: string): f is Side { |
| 94 | return ['t', 'r', 'b', 'l'].includes(f) |
nothing calls this directly
no outgoing calls
no test coverage detected