(a, b)
| 1107 | return cmp(a, b) < 0 ? b : a |
| 1108 | } |
| 1109 | function minPos(a, b) { |
| 1110 | return cmp(a, b) < 0 ? a : b |
| 1111 | } |
| 1112 | |
| 1113 | // Most of the external API clips given positions to make sure they |
| 1114 | // actually exist within the document. |
no test coverage detected