node_modules/htmlparser2/lib/WritableStream.js

Maintainability

80.84

Lines of code

21

Created with Raphaël 2.1.002550751002015-1-52014-12-42014-12-3

2015-5-18
Maintainability: 80.84

Created with Raphaël 2.1.007.51522.5302015-1-52014-12-42014-12-3

2015-5-18
Lines of Code: 21

Difficulty

7.65

Estimated Errors

0.16

Function weight

By Complexity

Created with Raphaël 2.1.0Stream1

By SLOC

Created with Raphaël 2.1.0Stream9
1
module.exports = Stream;
2
 
3
var Parser = require("./Parser.js"),
4
    WritableStream = require("stream").Writable || require("readable-stream").Writable;
5
 
6
function Stream(cbs, options){
7
    var parser = this._parser = new Parser(cbs, options);
8
 
9
    WritableStream.call(this, {decodeStrings: false});
10
 
11
    this.once("finish", function(){
12
        parser.end();
13
    });
14
}
15
 
16
require("util").inherits(Stream, WritableStream);
17
 
18
WritableStream.prototype._write = function(chunk, encoding, cb){
19
    this._parser.write(chunk);
20
    cb();
21
};