UNPKG
reading
Version:
latest (0.1.0)
0.1.0
A minimal RSS/Atom feed reader
github.com/mikekreuzer/Reading
mikekreuzer/Reading
reading
/
index.js
10 lines
(6 loc)
•
171 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
var
trawl =
require
(
'./lib/trawl.js'
);
exports
.
outFileName
=
''
;
exports
.
read
=
function
(
inFileName, outFileName
) {
trawl
(inFileName, outFileName); };