@replyke/express
Version: 
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
10 lines (9 loc) • 367 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = sanitizeUsername;
function sanitizeUsername(input) {
    // Regex to match allowed characters (letters, digits, underscores, and periods)
    const regex = /[^a-zA-Z0-9._]/g;
    // Replace disallowed characters with an empty string
    return input.replace(regex, "");
}