(expected, actual)
| 42 | NotMatchingError.prototype = new Error(); |
| 43 | |
| 44 | function assertEquality(expected, actual) { |
| 45 | if (expected !== actual) { |
| 46 | throw new NotMatchingError(expected, actual); |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | function sortedObject(o) { |
| 51 | var keys, result; |
no outgoing calls
no test coverage detected
searching dependent graphs…