Revert "Fix tight decoding when using binary/non-base64 connection."

This reverts commit 14717eb468.
This commit is contained in:
Joel Martin
2012-08-15 13:47:37 -05:00
parent 14717eb468
commit ca6b3f4cb1
2 changed files with 3 additions and 7 deletions

View File

@@ -18,10 +18,6 @@ var Util = {};
* Make arrays quack
*/
Array.prototype.subarray = function (start, end) {
this.slice(start, end);
};
Array.prototype.push8 = function (num) {
this.push(num & 0xFF);
};