weechat-protocol.js: move getSlice()

with-route-provider
Philippe Proulx 12 years ago
parent 0c02cae6a9
commit fef3e7542a
  1. 14
      js/weechat-protocol.js

@ -101,13 +101,6 @@ WeeChatProtocol.prototype = {
return "";
},
_getSlice: function(length) {
var slice = this._data.slice(this._dataAt, this._dataAt + length);
this._dataAt += length;
return slice;
},
_getHeader: function() {
var len = this._getInt();
var comp = this._getChar();
@ -147,6 +140,13 @@ WeeChatProtocol.prototype = {
return values;
},
_getSlice: function(length) {
var slice = this._data.slice(this._dataAt, this._dataAt + length);
this._dataAt += length;
return slice;
},
_setData: function (data) {
this._data = data;
},

Loading…
Cancel
Save