(conflicts)
| 690 | } |
| 691 | |
| 692 | function conflictError(conflicts) { |
| 693 | const err = new Error('Unexpected conflicts\n' + |
| 694 | conflicts.map(JSON.stringify).join('\n')); |
| 695 | err.name = 'ConflictError'; |
| 696 | } |
| 697 | |
| 698 | function carToString(c) { |
| 699 | return c.maker ? c.maker + ' ' + c.model : c.model; |
no outgoing calls
no test coverage detected
searching dependent graphs…