Files
fitness_walk_nwnu/node_modules/adbkit-logcat/lib/logcat.js
T
2026-09-08 20:28:54 +08:00

26 lines
422 B
JavaScript

(function() {
var Logcat, Priority, Reader;
Reader = require('./logcat/reader');
Priority = require('./logcat/priority');
Logcat = (function() {
function Logcat() {}
Logcat.readStream = function(stream, options) {
return new Reader(options).connect(stream);
};
return Logcat;
})();
Logcat.Reader = Reader;
Logcat.Priority = Priority;
module.exports = Logcat;
}).call(this);