(actual, expected, reason)
| 7 | } |
| 8 | |
| 9 | export function equal(actual, expected, reason) { |
| 10 | if (actual == expected) { return; } |
| 11 | |
| 12 | if (reason == null) { reason = `${ actual } == ${ expected }`; } |
| 13 | throwError(reason, { actual, expected, operator: "==" }); |
| 14 | } |
| 15 | |
| 16 | function isDeepEqual(actual, expected, memo) { |
| 17 | if (actual === expected) { return true; } |
no test coverage detected