mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
542 B
28 lines
542 B
8 years ago
|
'use strict';
|
||
|
|
||
|
require('../common');
|
||
|
const { DeflateRaw } = require('zlib');
|
||
|
const { inherits } = require('util');
|
||
|
const { Readable } = require('stream');
|
||
|
|
||
|
// validates that zlib.DeflateRaw can be inherited
|
||
|
// with util.inherits
|
||
|
|
||
|
function NotInitialized(options) {
|
||
|
DeflateRaw.call(this, options);
|
||
|
this.prop = true;
|
||
|
}
|
||
|
inherits(NotInitialized, DeflateRaw);
|
||
|
|
||
|
const dest = new NotInitialized();
|
||
|
|
||
|
const read = new Readable({
|
||
|
read() {
|
||
|
this.push(Buffer.from('a test string'));
|
||
|
this.push(null);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
read.pipe(dest);
|
||
|
dest.resume();
|