updated comments
This commit is contained in:
6
dist/api.js
vendored
6
dist/api.js
vendored
@@ -68,11 +68,10 @@ function getHTML(name) {
|
||||
return;
|
||||
}
|
||||
let result = Buffer.alloc(0);
|
||||
response.on('data', function (chunk) {
|
||||
response.on('data', chunk => {
|
||||
result = Buffer.concat([result, chunk]);
|
||||
});
|
||||
response.on('end', function () {
|
||||
// result has response body buffer
|
||||
response.on('end', () => {
|
||||
resolve(result.toString());
|
||||
});
|
||||
};
|
||||
@@ -212,4 +211,3 @@ async function getPlayerInteraction(interaction) {
|
||||
await interaction.editReply('```\n' + JSON.stringify(data, null, 2) + '\n```');
|
||||
}
|
||||
exports.getPlayerInteraction = getPlayerInteraction;
|
||||
//await getPlayer('IanWhysp')
|
||||
|
||||
Reference in New Issue
Block a user