(infix, a, cmp, b)
| 32 | } |
| 33 | |
| 34 | function expr(infix, a, cmp, b) { |
| 35 | return infix ? a + " " + cmp + " " + b : cmp + "(" + a + ", " + b + ")"; |
| 36 | } |
| 37 | |
| 38 | function SpecialToString(x) { |
| 39 | if ((1 / x) == -Infinity) return "-0"; |
no outgoing calls
no test coverage detected
searching dependent graphs…