git ssb

2+

Dominic / pull-stream



Tree: 7aa21412f6c0bd6b84022d67ff8e51711eddb510

Files: 7aa21412f6c0bd6b84022d67ff8e51711eddb510 / concat.js

154 bytesRaw
1'use strict'
2
3var reduce = require('./reduce')
4
5module.exports = function concat (cb) {
6 return reduce(function (a, b) {
7 return a + b
8 }, '', cb)
9}
10

Built with git-ssb-web