git ssb

2+

Dominic / pull-stream



Tree: 53993d4b470f0742ad15adb19ec03653e415da6a

Files: 53993d4b470f0742ad15adb19ec03653e415da6a / 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