Concatenate files asynchronously
npm install concat-files
``js
var concat = require('concat-files');
concat([
'/my/first/file',
'/another/file',
'/one/last/file'
], '/to/destination', function(err) {
if (err) throw err
console.log('done');
});
`
`shell`
npm test
`shell``
node bench
MIT