12345678910111213141516171819202122232425 |
- var serial = require('../serial.js');
-
-
- module.exports = ReadableSerial;
-
-
- function ReadableSerial(list, iterator, callback)
- {
- if (!(this instanceof ReadableSerial))
- {
- return new ReadableSerial(list, iterator, callback);
- }
-
-
- ReadableSerial.super_.call(this, {objectMode: true});
-
- this._start(serial, list, iterator, callback);
- }
|