Files: 2d4523dffda72662b6872ac393ee20e811eee7b1 / sinks / 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