-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from N0taN3rd/chrome-remote-interface-extra
Added Chrome remote interface extra capturer and writer
- Loading branch information
Showing
18 changed files
with
887 additions
and
846 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,31 @@ | ||
/** | ||
* @type {{AutoWARCParser: AutoWARCParser, WARCGzParser: WARCGzParser, WARCParser: WARCParser, WARCStreamTransform: WARCStreamTransform, GzipDetector: GzipDetector}} | ||
* @type {AutoWARCParser} | ||
*/ | ||
module.exports = { | ||
AutoWARCParser: require('./autoWARCParser'), | ||
WARCGzParser: require('./warcGzParser'), | ||
WARCParser: require('./warcParser'), | ||
WARCStreamTransform: require('./warcStreamTransform'), | ||
GzipDetector: require('./gzipDetector') | ||
} | ||
exports.AutoWARCParser = require('./autoWARCParser') | ||
|
||
/** | ||
* @type {GzipDetector} | ||
*/ | ||
exports.GzipDetector = require('./gzipDetector') | ||
|
||
/** | ||
* @type {WARCGzParser} | ||
*/ | ||
exports.WARCGzParser = require('./warcGzParser') | ||
|
||
/** | ||
* @type {WARCParser} | ||
*/ | ||
exports.WARCParser = require('./warcParser') | ||
|
||
/** | ||
* @type {WARCStreamTransform} | ||
*/ | ||
exports.WARCStreamTransform = require('./warcStreamTransform') | ||
|
||
if (require('./_canUseRecordIterator')) { | ||
/** | ||
* @type {function(warcStream: ReadStream|Gunzip): AsyncIterator<WARCRecord>} | ||
*/ | ||
module.exports.recordIterator = require('./recordterator') | ||
exports.recordIterator = require('./recordterator') | ||
} |
Oops, something went wrong.