()
| 195 | |
| 196 | class NullsFirstSort extends BaseSort { |
| 197 | protected override getSortKey(): (item: any) => number { |
| 198 | return (item: any) => { |
| 199 | return isNullish(item[this.field]) ? 0 : 1; |
| 200 | }; |
| 201 | } |
| 202 | |
| 203 | protected getLabel(): string { |
| 204 | const titleCasedField = titleCase(this.field); |
nothing calls this directly
no test coverage detected