()
| 178 | |
| 179 | class FalsyFirstSort extends BaseSort { |
| 180 | protected override getSortKey(): (item: any) => number { |
| 181 | return (item: any) => { |
| 182 | return Boolean(item[this.field]) ? 1 : 0; |
| 183 | }; |
| 184 | } |
| 185 | |
| 186 | protected getLabel(): string { |
| 187 | const titleCasedField = titleCase(this.field); |
nothing calls this directly
no outgoing calls
no test coverage detected