git ssb

2+

Dominic / pull-stream



Tree: 7aa21412f6c0bd6b84022d67ff8e51711eddb510

Files: 7aa21412f6c0bd6b84022d67ff8e51711eddb510 / error.js

127 bytesRaw
1//a stream that errors immediately.
2module.exports = function error (err) {
3 return function (abort, cb) {
4 cb(err)
5 }
6}
7
8

Built with git-ssb-web