if (answer.equals("yes"))
console.log(`${bot.user.username} online`);
const obj = {
first: 123,
second: 154,
third: 654,
fourth: 993
};
// Например так, с помощью удаления ненужных свойств
delete obj.first;
delete obj.fourth;
// Или так, используя оператор rest
const {first, fourth, ...customObj} = obj;
// или так (с помощью библиотеки lodash)
const customObj = _.pick(obj, ['second', 'third'])
#!/bin/bash
git checkout --orphan temp $1
git commit -m "Truncated history"
git rebase --onto temp $1 master
git branch -D temp
# The following 2 commands are optional - they keep your git repo in good shape.
git prune --progress # delete all the objects w/o references
git gc --aggressive # aggressively collect garbage; may take a lot of time on large repos
cmd.hear(/^(?:ид)\s([^]+)$/i, async (message, bot) => {
try {
let result = await vk.api.utils.resolveScreenName({ screen_name: message.args[2] });
// В result ответ от сервера, result.object_id - ID найденного пользователя/сообщества
} catch (err) {
// Здесь обрабатываем ошибки
}
});