git ssb

2+

Dominic / pull-stream



Tree: 86aa25b57033c0018c6c301cb23888c7c3a7ba5d

Files: 86aa25b57033c0018c6c301cb23888c7c3a7ba5d / sources / empty.js

135 bytesRaw
1'use strict'
2//a stream that ends immediately.
3module.exports = function empty () {
4 return function (abort, cb) {
5 cb(true)
6 }
7}
8

Built with git-ssb-web