UNPKG
npm-kludge-search
Version:
latest (2.9.6)
2.9.6
2.9.5
2.9.4
2.9.3
2.9.2
2.9.1
2.9.0
2.8.2
2.8.1
2.8.0
2.7.1
2.7.0
2.6.1
2.6.0
2.5.1
2.5.0
2.4.3
2.4.2
2.4.1
2.3.1
2.3.0
2.1.3
Kludgy fast npm searcher
github.com/smikes/npm-kludge-search
smikes/npm-kludge-search
npm-kludge-search
/
lib
/
reporters
/
null.js
17 lines
(11 loc)
•
241 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'use strict'
;
var
es =
require
(
'event-stream'
);
function
makeReporter
(
) {
var
rep, res = []; rep = es.
through
(
function
(
item
) { res.
push
(item); }); rep.
res
= res;
return
rep; }
module
.
exports
= makeReporter;