From e8a2afe9ce1b5d416ab0526361a9f0894604552f Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Sun, 19 Jan 2014 23:33:35 -0800 Subject: [PATCH] Support deprecated `get` and `set` calls --- index.js | 21 +++++++++++++++++++-- test/deprecated.js | 18 ++++++++++++++++++ 2 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 test/deprecated.js diff --git a/index.js b/index.js index 6c30b31..dc3a534 100644 --- a/index.js +++ b/index.js @@ -84,7 +84,7 @@ function Buffer (subject, encoding, noZero) { if (Buffer._useTypedArrays && typeof Uint8Array === 'function' && subject instanceof Uint8Array) { // Speed optimization -- use set if we're copying from a Uint8Array - buf.set(subject) + Uint8Array.prototype.set.call(buf, subject) } else if (isArrayish(subject)) { // Treat array-ish objects as a byte array for (i = 0; i < length; i++) { @@ -401,6 +401,18 @@ Buffer.prototype.slice = function (start, end) { } } +// `get` will be removed in Node 0.13+ +Buffer.prototype.get = function (offset) { + console.log('.get() is deprecated. Access using array indexes instead.') + return this.readUInt8(offset) +} + +// `set` will be removed in Node 0.13+ +Buffer.prototype.set = function (v, offset) { + console.log('.set() is deprecated. Access using array indexes instead.') + return this.writeUInt8(v, offset) +} + Buffer.prototype.readUInt8 = function (offset, noAssert) { var buf = this if (!noAssert) { @@ -839,10 +851,15 @@ function stringtrim (str) { var BP = Buffer.prototype +/** + * Augment the Uint8Array *instance* (not the class!) with Buffer methods + */ function augment (arr) { arr._isBuffer = true - // Augment the Uint8Array *instance* (not the class!) with Buffer methods + arr.get = BP.get // deprecated + arr.set = BP.set // deprecated + arr.write = BP.write arr.toString = BP.toString arr.toLocaleString = BP.toString diff --git a/test/deprecated.js b/test/deprecated.js new file mode 100644 index 0000000..dfc1374 --- /dev/null +++ b/test/deprecated.js @@ -0,0 +1,18 @@ +var B = require('../index.js').Buffer +var test = require('tape') + +test('.get (deprecated)', function (t) { + var b = new B([7, 42]) + t.equal(b.get(0), 7) + t.equal(b.get(1), 42) + t.end() +}) + +test('.set (deprecated)', function (t) { + var b = new B(2) + b.set(7, 0) + b.set(42, 1) + t.equal(b[0], 7) + t.equal(b[1], 42) + t.end() +}) \ No newline at end of file -- 2.34.1