(cur1, cur2)
| 3010 | return false; |
| 3011 | } |
| 3012 | function cursorMin(cur1, cur2) { |
| 3013 | if (arguments.length > 2) { |
| 3014 | cur2 = cursorMin.apply(undefined, Array.prototype.slice.call(arguments, 1)); |
| 3015 | } |
| 3016 | return cursorIsBefore(cur1, cur2) ? cur1 : cur2; |
| 3017 | } |
| 3018 | function cursorMax(cur1, cur2) { |
| 3019 | if (arguments.length > 2) { |
| 3020 | cur2 = cursorMax.apply(undefined, Array.prototype.slice.call(arguments, 1)); |
no test coverage detected