pconcat
v1.2.0
Published
A concat module that loves promises.
Downloads
11
Readme
pconcat
Install
$ npm install pconcat
Usage
Async concatenate files using promises.
var concat = require('pconcat')
concat(['a.txt', 'b.txt', 'c.txt'], 'all.txt').then(function() {
// done!
}).catch(function(err) {
// if error :(
})