(lval: unknown)
| 202 | } |
| 203 | // Performance sensitive. |
| 204 | evaluate(lval: unknown): boolean { |
| 205 | let eqResult = lval === this._rval; |
| 206 | if (!eqResult) { |
| 207 | const lvalTypeof = typeof lval; |
| 208 | if (lvalTypeof !== this._rvalTypeof && (lvalTypeof === 'number' || this._rvalTypeof === 'number')) { |
| 209 | eqResult = numericToNumber(lval) === this._rvalFloat; |
| 210 | } |
| 211 | } |
| 212 | return this._isEQ ? eqResult : !eqResult; |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | type OrderRelationOperator = 'lt' | 'lte' | 'gt' | 'gte'; |
nothing calls this directly
no test coverage detected