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
2018-05-04 19:51:49 +02:00

8 lines
106 B
JavaScript

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