git ssb

2+

Dominic / pull-stream



Tree: 2b8ed0b778ffe06dbf19898b0cdeb8e009224087

Files: 2b8ed0b778ffe06dbf19898b0cdeb8e009224087 / sources / error.js

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

Built with git-ssb-web