()
| 143 | |
| 144 | class FalseFirstSort extends BaseSort { |
| 145 | protected override getSortKey(): (item: any) => number { |
| 146 | return (item: any) => { |
| 147 | const value = item[this.field]; |
| 148 | return value === false ? 0 : value === true ? 1 : 2; |
| 149 | }; |
| 150 | } |
| 151 | |
| 152 | protected getLabel(): string { |
| 153 | const titleCasedField = titleCase(this.field); |
nothing calls this directly
no outgoing calls
no test coverage detected