###This app will take a file with an array of arrays and return the minimum unique paths
npm installnode app.js samples/events.js
##Sample input ####events.js
[
['test1', 'test2'],
['test2', 'test3']
]
##Sample output
[
['test1', 'test2', 'test3]
]
##Test
npm test --coverage
