How to use the log function from pull-stream

Find comprehensive JavaScript pull-stream.log code examples handpicked from public code repositorys.

114
115
116
117
118
119
120
121
122
123
        count(6)
0---1---2---3---4---5---6
```
```js
const source = pull.count(6)
const sink = pull.log()
pull(source, sink)
```

#### empty
fork icon46
star icon839
watch icon48

+ 15 other calls in file

251
252
253
254
255
256
257
``` js
var pull = require('pull-stream')

pull(
  LS(dir),
  pull.log()
)
fork icon12
star icon0
watch icon3