(left, right)
| 11 | } |
| 12 | |
| 13 | function _compareBootstrapNumeric(left, right) { |
| 14 | if (left.length !== right.length) return left.length - right.length; |
| 15 | if (left < right) return -1; |
| 16 | if (left > right) return 1; |
| 17 | return 0; |
| 18 | } |
| 19 | |
| 20 | function _compareBootstrapPrerelease(left, right) { |
| 21 | const leftNumeric = /^\d+$/.test(left); |
no outgoing calls
no test coverage detected