UNPKG

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