UNPKG

@feugene/mu

Version:

Helpful TS utilities without dependencies

10 lines (9 loc) 203 B
/** * Remove extra spaces from string * * @param {string} str * @returns {string} */ export default function clearSpaces(str: string): string { return str.toString().replace(/\s+/g, ' ').trim() }