-exports.Buffer = SlowBuffer;
-var Buffer = SlowBuffer;
+exports.Buffer = Buffer;
-function SlowBuffer(subject, encoding, offset) {
- if (!(this instanceof SlowBuffer)) {
- return new SlowBuffer(subject, encoding, offset);
+function Buffer(subject, encoding, offset) {
+ if (!(this instanceof Buffer)) {
+ return new Buffer(subject, encoding, offset);
}
var type;
break;
case 'string':
- this.length = SlowBuffer.byteLength(subject, encoding);
+ this.length = Buffer.byteLength(subject, encoding);
break;
case 'object': // Assume object is an array
// Treat array-ish objects as a byte array.
if (isArrayIsh(subject)) {
for (var i = 0; i < this.length; i++) {
- if (subject instanceof SlowBuffer) {
+ if (subject instanceof Buffer) {
this[i] = subject.readUInt8(i);
}
else {
return require("base64-js").toByteArray(str);
}
-SlowBuffer.byteLength = function (str, encoding) {
+Buffer.byteLength = function (str, encoding) {
switch (encoding || "utf8") {
case 'hex':
return str.length / 2;
return i;
}
-SlowBuffer.prototype.utf8Write = function (string, offset, length) {
+Buffer.prototype.utf8Write = function (string, offset, length) {
var bytes, pos;
- return SlowBuffer._charsWritten = blitBuffer(utf8ToBytes(string), this, offset, length);
+ return Buffer._charsWritten = blitBuffer(utf8ToBytes(string), this, offset, length);
};
-SlowBuffer.prototype.asciiWrite = function (string, offset, length) {
+Buffer.prototype.asciiWrite = function (string, offset, length) {
var bytes, pos;
- return SlowBuffer._charsWritten = blitBuffer(asciiToBytes(string), this, offset, length);
+ return Buffer._charsWritten = blitBuffer(asciiToBytes(string), this, offset, length);
};
-SlowBuffer.prototype.binaryWrite = SlowBuffer.prototype.asciiWrite;
+Buffer.prototype.binaryWrite = Buffer.prototype.asciiWrite;
-SlowBuffer.prototype.base64Write = function (string, offset, length) {
+Buffer.prototype.base64Write = function (string, offset, length) {
var bytes, pos;
- return SlowBuffer._charsWritten = blitBuffer(base64ToBytes(string), this, offset, length);
+ return Buffer._charsWritten = blitBuffer(base64ToBytes(string), this, offset, length);
};
-SlowBuffer.prototype.base64Slice = function (start, end) {
+Buffer.prototype.base64Slice = function (start, end) {
var bytes = Array.prototype.slice.apply(this, arguments)
return require("base64-js").fromByteArray(bytes);
}
}
}
-SlowBuffer.prototype.utf8Slice = function () {
+Buffer.prototype.utf8Slice = function () {
var bytes = Array.prototype.slice.apply(this, arguments);
var res = "";
var tmp = "";
return res + decodeUtf8Char(tmp);
}
-SlowBuffer.prototype.asciiSlice = function () {
+Buffer.prototype.asciiSlice = function () {
var bytes = Array.prototype.slice.apply(this, arguments);
var ret = "";
for (var i = 0; i < bytes.length; i++)
return ret;
}
-SlowBuffer.prototype.binarySlice = SlowBuffer.prototype.asciiSlice;
+Buffer.prototype.binarySlice = Buffer.prototype.asciiSlice;
-SlowBuffer.prototype.inspect = function() {
+Buffer.prototype.inspect = function() {
var out = [],
len = this.length;
for (var i = 0; i < len; i++) {
break;
}
}
- return '<SlowBuffer ' + out.join(' ') + '>';
+ return '<Buffer ' + out.join(' ') + '>';
};
-SlowBuffer.prototype.hexSlice = function(start, end) {
+Buffer.prototype.hexSlice = function(start, end) {
var len = this.length;
if (!start || start < 0) start = 0;
};
-SlowBuffer.prototype.toString = function(encoding, start, end) {
+Buffer.prototype.toString = function(encoding, start, end) {
encoding = String(encoding || 'utf8').toLowerCase();
start = +start || 0;
if (typeof end == 'undefined') end = this.length;
};
-SlowBuffer.prototype.hexWrite = function(string, offset, length) {
+Buffer.prototype.hexWrite = function(string, offset, length) {
offset = +offset || 0;
var remaining = this.length - offset;
if (!length) {
if (isNaN(byte)) throw new Error('Invalid hex string');
this[offset + i] = byte;
}
- SlowBuffer._charsWritten = i * 2;
+ Buffer._charsWritten = i * 2;
return i;
};
-SlowBuffer.prototype.write = function(string, offset, length, encoding) {
+Buffer.prototype.write = function(string, offset, length, encoding) {
// Support both (string, offset, length, encoding)
// and the legacy (string, encoding, offset, length)
if (isFinite(offset)) {
// slice(start, end)
-SlowBuffer.prototype.slice = function(start, end) {
+Buffer.prototype.slice = function(start, end) {
if (end === undefined) end = this.length;
if (end > this.length) {
return new Buffer(this, end - start, +start);
};
-SlowBuffer.prototype.copy = function(target, targetstart, sourcestart, sourceend) {
+Buffer.prototype.copy = function(target, targetstart, sourcestart, sourceend) {
var temp = [];
for (var i=sourcestart; i<sourceend; i++) {
assert.ok(typeof this[i] !== 'undefined', "copying undefined buffer bytes!");
}
};
-SlowBuffer.prototype.fill = function(value, start, end) {
+Buffer.prototype.fill = function(value, start, end) {
if (end > this.length) {
throw new Error('oob');
}
// Static methods
Buffer.isBuffer = function isBuffer(b) {
- return b instanceof Buffer || b instanceof SlowBuffer;
+ return b instanceof Buffer || b instanceof Buffer;
};
Buffer.concat = function (list, totalLength) {