* Checks if variable "a" is greater than "b". * @param {*} a * @param {*} b * @return {boolean}
(a, b)
| 49 | * @return {boolean} |
| 50 | */ |
| 51 | greaterThan(a, b) { |
| 52 | return this.compare(a, b) > 0; |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * Checks if variable "a" is less than or equal to "b". |
no outgoing calls
no test coverage detected