mirror of
https://github.com/thedevs-network/the-guard-bot
synced 2025-08-22 18:08:51 +00:00
8 lines
108 B
JavaScript
8 lines
108 B
JavaScript
'use strict';
|
|
|
|
const username = (s) => s.replace(/^@/, '').toLowerCase();
|
|
|
|
module.exports = {
|
|
username,
|
|
};
|