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

8 lines
108 B
JavaScript
Raw Normal View History

2018-05-04 19:51:49 +02:00
'use strict';
2023-03-08 14:08:57 +01:00
const username = (s) => s.replace(/^@/, '').toLowerCase();
2018-05-04 19:51:49 +02:00
module.exports = {
username,
};