2
0
mirror of https://github.com/thedevs-network/the-guard-bot synced 2025-08-23 02:17:47 +00:00

15 lines
303 B
JavaScript
Raw Normal View History

2017-07-24 17:12:38 +02:00
'use strict';
const link = ({ id, username, first_name }) =>
`<a href="tg://user?id=${id}">${username ? username : first_name}</a>`;
2017-07-24 17:12:38 +02:00
2017-07-24 18:08:31 +02:00
const deleteAfter = ms => ctx =>
setTimeout(() =>
ctx.telegram.deleteMessage(ctx.chat.id, ctx.message.message_id),
ms);
2017-07-24 17:12:38 +02:00
module.exports = {
2017-07-24 18:08:31 +02:00
deleteAfter,
2017-07-24 17:12:38 +02:00
link
};