2
0
mirror of https://github.com/thedevs-network/the-guard-bot synced 2025-08-23 18:38:05 +00:00

11 lines
186 B
JavaScript
Raw Normal View History

2017-07-24 17:12:38 +02:00
'use strict';
const link = user =>
user.username
? `<a href="https://t.me/${user.username}">${user.username}</a>`
: `<code>${user.first_name}</code>`;
module.exports = {
link
};