git ssb

2+

Dominic / pull-stream



Tree: 81642b10bd4a0105dae4a0d01429420d3ddb2016

Files: 81642b10bd4a0105dae4a0d01429420d3ddb2016 / sinks / log.js

153 bytesRaw
1'use strict'
2
3var drain = require('./drain')
4
5module.exports = function log (done) {
6 return drain(function (data) {
7 console.log(data)
8 }, done)
9}
10

Built with git-ssb-web