File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ meteor-node-csv
3
3
4
4
[ node-csv npm] ( http://www.adaltas.com/projects/node-csv/ ) wrapped for meteor
5
5
6
- Once this package is added using 'mrt add node-csv-npm' It will be available in your meteor app at ' CSV'
6
+ Add like so: ` meteor add dsyko:meteor- node-csv` . This package exports the global ` CSV ` .
7
7
8
8
Adding this mrt package is equivalent to:
9
9
@@ -50,11 +50,11 @@ var exportCSV = function(responseStream){
50
50
return user;
51
51
})
52
52
.on (' error' , function (error ){
53
- log .error (' Error streaming CSV export: ' , error .message );
53
+ console .error (' Error streaming CSV export: ' , error .message );
54
54
})
55
55
.on (' end' , function (count ){
56
56
responseStream .end ();
57
- fut .ret ();
57
+ fut .return ();
58
58
});
59
59
60
60
// Write table headings for CSV to stream.
You can’t perform that action at this time.
0 commit comments