|
@ -1412,7 +1412,8 @@ function ReadStream(path, options) { |
|
|
|
|
|
|
|
|
this.start = options.hasOwnProperty('start') ? options.start : undefined; |
|
|
this.start = options.hasOwnProperty('start') ? options.start : undefined; |
|
|
this.end = options.hasOwnProperty('start') ? options.end : undefined; |
|
|
this.end = options.hasOwnProperty('start') ? options.end : undefined; |
|
|
this.autoClose = options.hasOwnProperty('autoClose') ? options.autoClose : true; |
|
|
this.autoClose = options.hasOwnProperty('autoClose') ? |
|
|
|
|
|
options.autoClose : true; |
|
|
this.pos = undefined; |
|
|
this.pos = undefined; |
|
|
|
|
|
|
|
|
if (this.start !== undefined) { |
|
|
if (this.start !== undefined) { |
|
|