mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +00:00

Several changes: * Soft-Deprecate Buffer() constructors * Add `Buffer.from()`, `Buffer.alloc()`, and `Buffer.allocUnsafe()` * Add `--zero-fill-buffers` command line option * Add byteOffset and length to `new Buffer(arrayBuffer)` constructor * buffer.fill('') previously had no effect, now zero-fills * Update the docs PR-URL: https://github.com/nodejs/node/pull/4682 Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
53 lines
974 B
JavaScript
53 lines
974 B
JavaScript
'use strict';
|
|
require('../common');
|
|
var R = require('_stream_readable');
|
|
var W = require('_stream_writable');
|
|
var assert = require('assert');
|
|
|
|
var util = require('util');
|
|
|
|
var ondataCalled = 0;
|
|
|
|
function TestReader() {
|
|
R.apply(this);
|
|
this._buffer = Buffer.alloc(100, 'x');
|
|
|
|
this.on('data', function() {
|
|
ondataCalled++;
|
|
});
|
|
}
|
|
|
|
util.inherits(TestReader, R);
|
|
|
|
TestReader.prototype._read = function(n) {
|
|
this.push(this._buffer);
|
|
this._buffer = Buffer.alloc(0);
|
|
};
|
|
|
|
var reader = new TestReader();
|
|
setImmediate(function() {
|
|
assert.equal(ondataCalled, 1);
|
|
console.log('ok');
|
|
reader.push(null);
|
|
});
|
|
|
|
function TestWriter() {
|
|
W.apply(this);
|
|
this.write('foo');
|
|
this.end();
|
|
}
|
|
|
|
util.inherits(TestWriter, W);
|
|
|
|
TestWriter.prototype._write = function(chunk, enc, cb) {
|
|
cb();
|
|
};
|
|
|
|
var writer = new TestWriter();
|
|
|
|
process.on('exit', function() {
|
|
assert.strictEqual(reader.readable, false);
|
|
assert.strictEqual(writer.writable, false);
|
|
console.log('ok');
|
|
});
|