(a: unknown, b: unknown)
| 21 | |
| 22 | // Use only in toBe assertions for edge case messages. |
| 23 | const stripped = (a: unknown, b: unknown) => stripAnsi(diff(a, b) ?? ''); |
| 24 | |
| 25 | // Use in toBe assertions for comparison lines. |
| 26 | const optionsBe: DiffOptions = { |