mirror of
https://github.com/nodejs/node.git
synced 2025-04-29 14:25:18 +00:00

The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
12 lines
338 B
JavaScript
12 lines
338 B
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
var Buffer = require('buffer').Buffer;
|
|
|
|
var buff = new Buffer(Buffer.poolSize + 1);
|
|
var slicedBuffer = buff.slice();
|
|
assert.equal(slicedBuffer.parent,
|
|
buff,
|
|
"slicedBufffer should have its parent set to the original " +
|
|
" buffer");
|