mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-18 09:35:50 +00:00
Replace deprecated substr with substring (#355)
* Make the QueryRunner more readable * Remove use of deprecated substr and replace with substring, and some formatting
This commit is contained in:
parent
65dd876252
commit
5b01e1be17
9 changed files with 66 additions and 61 deletions
|
|
@ -14,8 +14,8 @@ class Teamspeak2 extends Core {
|
|||
const data = await this.sendCommand(socket, 'si');
|
||||
for (const line of data.split('\r\n')) {
|
||||
const equals = line.indexOf('=');
|
||||
const key = equals === -1 ? line : line.substr(0,equals);
|
||||
const value = equals === -1 ? '' : line.substr(equals+1);
|
||||
const key = equals === -1 ? line : line.substring(0,equals);
|
||||
const value = equals === -1 ? '' : line.substring(equals+1);
|
||||
state.raw[key] = value;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue