(cur1, cur2)
| 12064 | return false; |
| 12065 | } |
| 12066 | function cursorMin(cur1, cur2) { |
| 12067 | if (arguments.length > 2) { |
| 12068 | cur2 = cursorMin.apply(undefined, Array.prototype.slice.call(arguments, 1)); |
| 12069 | } |
| 12070 | return cursorIsBefore(cur1, cur2) ? cur1 : cur2; |
| 12071 | } |
| 12072 | function cursorMax(cur1, cur2) { |
| 12073 | if (arguments.length > 2) { |
| 12074 | cur2 = cursorMax.apply(undefined, Array.prototype.slice.call(arguments, 1)); |
no test coverage detected