# concat-files

[![Build Status](https://travis-ci.org/vvo/concat-files.png)](https://travis-ci.org/vvo/concat-files)

## example

```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');
  });
```

## tests

```shell
npm test
```

## benchmarks

```shell
node bench
```

## license

MIT
