2
0
mirror of https://github.com/thedevs-network/the-guard-bot synced 2025-08-22 18:08:51 +00:00
the-guard-bot/utils/normalize.js
Thomas Rory Gummerson 37974a3d92 Updates
2023-03-08 14:08:57 +01:00

8 lines
108 B
JavaScript

'use strict';
const username = (s) => s.replace(/^@/, '').toLowerCase();
module.exports = {
username,
};