git ssb

2+

Dominic / pull-stream



Tree: 12f48f87e5e7e5e2d9d27836952b476f235fff89

Files: 12f48f87e5e7e5e2d9d27836952b476f235fff89 / 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