UNPKG

yamdbf-addon-dm-manager

Version:

YAMDBF addon for viewing and replying to DMs sent to your discord bot

10 lines (9 loc) 221 B
"use strict"; /** * Remove any non alphanumeric characters from the given text * and lowercase it */ function normalize(text) { return text.toLowerCase().replace(/[^a-z0-9]/g, ''); } exports.normalize = normalize;