diff options
Diffstat (limited to 'common.js')
-rw-r--r-- | common.js | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -101,3 +101,9 @@ module.exports.listChangeCommand = (action, list, status) => new Object({ } } }) + +module.exports.stripPings = str => str + .replace(/<@!/g, "<@!") + .replace(/<@&/g, "<@&") + .replace(/@here/g, "@here") + .replace(/@everyone/g, "@everyone") |