* Compares the provided instances and returns true if left is later than or equal to right , false otherwise. * * @param {JulianDate} left The first instance. * @param {JulianDate} right The second instance. * @returns {boolean} tr
(left, right)
| 1144 | * @returns {boolean} <code>true</code> if <code>left</code> is later than or equal to <code>right</code>, <code>false</code> otherwise. |
| 1145 | */ |
| 1146 | static greaterThanOrEquals(left, right) { |
| 1147 | return JulianDate.compare(left, right) >= 0; |
| 1148 | } |
| 1149 | |
| 1150 | /** |
| 1151 | * Duplicates this instance. |
no test coverage detected