Skip to content

Commit

Permalink
buffer: fix cyclic dependency with util
Browse files Browse the repository at this point in the history
PR-URL: #1988
Fixes: #1987
Reviewed-By: Roman Reiss <me@silverwind.io>
  • Loading branch information
brendanashworth committed Jun 16, 2015
1 parent 1d79f57 commit d5637e6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/buffer.js
Expand Up @@ -3,7 +3,6 @@

const binding = process.binding('buffer');
const smalloc = process.binding('smalloc');
const util = require('util');
const internalUtil = require('internal/util');
const alloc = smalloc.alloc;
const truncate = smalloc.truncate;
Expand Down Expand Up @@ -457,7 +456,7 @@ Buffer.prototype.fill = function fill(val, start, end) {


// XXX remove in v0.13
Buffer.prototype.get = util.deprecate(function get(offset) {
Buffer.prototype.get = internalUtil.deprecate(function get(offset) {
offset = ~~offset;
if (offset < 0 || offset >= this.length)
throw new RangeError('index out of range');
Expand All @@ -466,7 +465,7 @@ Buffer.prototype.get = util.deprecate(function get(offset) {


// XXX remove in v0.13
Buffer.prototype.set = util.deprecate(function set(offset, v) {
Buffer.prototype.set = internalUtil.deprecate(function set(offset, v) {
offset = ~~offset;
if (offset < 0 || offset >= this.length)
throw new RangeError('index out of range');
Expand Down
4 changes: 4 additions & 0 deletions test/parallel/test-util.js
Expand Up @@ -71,6 +71,10 @@ assert.equal(true, util.isPrimitive(Infinity));
assert.equal(true, util.isPrimitive(NaN));
assert.equal(true, util.isPrimitive(Symbol('symbol')));

// isBuffer
assert.equal(false, util.isBuffer('foo'));
assert.equal(true, util.isBuffer(new Buffer('foo')));

// _extend
assert.deepEqual(util._extend({a:1}), {a:1});
assert.deepEqual(util._extend({a:1}, []), {a:1});
Expand Down

0 comments on commit d5637e6

Please sign in to comment.