()
| 461 | */ |
| 462 | @Input() |
| 463 | get compareWith() { |
| 464 | return this._compareWith; |
| 465 | } |
| 466 | set compareWith(fn: (o1: any, o2: any) => boolean) { |
| 467 | if (typeof fn !== 'function' && (typeof ngDevMode === 'undefined' || ngDevMode)) { |
| 468 | throw getMatSelectNonFunctionValueError(); |
no test coverage detected