git ssb

2+

Dominic / pull-stream



Tree: d48c65ac71736fb2bc9e028edad34616a98ee895

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