(a)
| 121 | throw failure("Expected " + a + " to be equal to " + b, eq); |
| 122 | } |
| 123 | function is(a) { |
| 124 | if (!a) throw failure("Expected " + a + " to be truthy", is); |
| 125 | } |
| 126 | function failure(message, root) { |
| 127 | var error = new Error(message); |
| 128 | if (Error.captureStackTrace) |