UNPKG

@eccenca/gui-elements

Version:

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

3 lines 243 B
/** Removes leading and trailing spaces. In addition converts multiple subsequent spaces to a single space. */ export var removeExtraSpaces = function (text) { return text.replace(/\s+/g, " ").trim(); }; //# sourceMappingURL=stringUtils.js.map