UNPKG

@eccenca/gui-elements

Version:

GUI elements based on other libraries, usable in React application, written in Typescript.

3 lines (2 loc) 196 B
/** Removes leading and trailing spaces. In addition converts multiple subsequent spaces to a single space. */ export const removeExtraSpaces = (text: string) => text.replace(/\s+/g, " ").trim();