* Checks if variable "a" is less than "b". * @param {*} a * @param {*} b * @return {boolean}
(a, b)
| 39 | * @return {boolean} |
| 40 | */ |
| 41 | lessThan(a, b) { |
| 42 | return this.compare(a, b) < 0; |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Checks if variable "a" is greater than "b". |
no outgoing calls
no test coverage detected