UNPKG

@xrengine/server-core

Version:

Shared components for XREngine server

10 lines (8 loc) 237 B
/** * cleans a string to allow only alphanumeric, period, underscore, and dash * @param {string} str * @returns {string} */ export const cleanString = (str: string) => { return str.replaceAll(' ', '-').replace(/[^\w\.\-]/g, '') }