#FS and Async
##To Submit this Assignment
- fork this repository
- write all of your code in a folder containing your name
- push to your repository
- submit a pull request to this repository
- submit a link to your PR in canvas
##Description:
For this assignment you will need to read three files and console
log the first 8 bytes in hex of each file.
Also, you must guarantee that three files are read and console logged in the
order 'one.txt', 'two.txt', 'three.txt'
regardless of file size.
You can use any method of handling async except nested callback.
Some possible methods include: event emitters, promises, or async handling libraries.
##Rubric:
- Async Handling: 4pts
- Use of fs: 2pts
- Testing: 4pts