git ssb

2+

Dominic / pull-stream



Tree: f2094a0360975cb77c09e9635cf7ce2801178945

Files: f2094a0360975cb77c09e9635cf7ce2801178945 / throughs / filter.js

488 bytesRaw
1'use strict'
2
3var tester = require('../util/tester')
4
5module.exports = function filter (test) {
6 //regexp
7 test = tester(test)
8 return function (read) {
9 return function next (end, cb) {
10 var sync, loop = true
11 while(loop) {
12 loop = false
13 sync = true
14 read(end, function (end, data) {
15 if(!end && !test(data))
16 return sync ? loop = true : next(end, cb)
17 cb(end, data)
18 })
19 sync = false
20 }
21 }
22 }
23}
24
25

Built with git-ssb-web