Files: 7aa21412f6c0bd6b84022d67ff8e51711eddb510 / concat.js
154 bytesRaw
1 | |
2 | |
3 | var reduce = require('./reduce') |
4 | |
5 | module.exports = function concat (cb) { |
6 | return reduce(function (a, b) { |
7 | return a + b |
8 | }, '', cb) |
9 | } |
10 |
Built with git-ssb-web
1 | |
2 | |
3 | var reduce = require('./reduce') |
4 | |
5 | module.exports = function concat (cb) { |
6 | return reduce(function (a, b) { |
7 | return a + b |
8 | }, '', cb) |
9 | } |
10 |
Built with git-ssb-web