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.
23 lines
576 B
23 lines
576 B
'use strict';
|
|
|
|
const common = require('../common');
|
|
const stream = require('stream');
|
|
const assert = require('assert');
|
|
|
|
const transform = new stream.Transform({
|
|
transform: _transform,
|
|
highWaterMark: 1
|
|
});
|
|
|
|
function _transform(chunk, encoding, cb) {
|
|
assert.strictEqual(transform._writableState.needDrain, true);
|
|
cb();
|
|
}
|
|
|
|
assert.strictEqual(transform._writableState.needDrain, false);
|
|
|
|
transform.write('asdasd', common.mustCall(() => {
|
|
assert.strictEqual(transform._writableState.needDrain, false);
|
|
}));
|
|
|
|
assert.strictEqual(transform._writableState.needDrain, true);
|
|
|