Safely eject media on all major platforms.
npm install eject-mediaRuns one of the following in a child_process:
* diskutil eject /drive (OSX)
* eject -f /drive (Linux)
* EjectMedia Windows)
#Usage
var ejectMedia = require('eject-media');
ejectMedia.eject('/Volumes/Drive', function(error, stdin, stdout) {
if (!error) console.log('ejected!';)
});