weechat-protocol.js: move getSlice()
This commit is contained in:
parent
0c02cae6a9
commit
fef3e7542a
1 changed files with 7 additions and 7 deletions
|
@ -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…
Reference in a new issue