()
| 212 | |
| 213 | class NullsLastSort extends BaseSort { |
| 214 | protected override getSortKey(): (item: any) => number { |
| 215 | return (item: any) => { |
| 216 | return isNullish(item[this.field]) ? 1 : 0; |
| 217 | }; |
| 218 | } |
| 219 | |
| 220 | protected getLabel(): string { |
| 221 | const titleCasedField = titleCase(this.field); |
nothing calls this directly
no test coverage detected