(a, b)
| 6 | } |
| 7 | |
| 8 | export function logArraysDifference (a, b) { |
| 9 | const [ aOnly, bOnly ] = getSymmetricDifference(a, b) |
| 10 | |
| 11 | |
| 12 | console.log( 'Missing from first list:', aOnly ) |
| 13 | console.log( 'Missing from second list:', bOnly ) |
| 14 | |
| 15 | console.log( `List difference Count ${ aOnly.length } / ${ bOnly.length }`, ) |
| 16 | |
| 17 | return { |
| 18 | aOnly, |
| 19 | bOnly, |
| 20 | } |
| 21 | } |
no test coverage detected