@eccenca/gui-elements
Version:
GUI elements based on other libraries, usable in React application, written in Typescript.
7 lines • 380 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.removeExtraSpaces = void 0;
/** Removes leading and trailing spaces. In addition converts multiple subsequent spaces to a single space. */
const removeExtraSpaces = (text) => text.replace(/\s+/g, " ").trim();
exports.removeExtraSpaces = removeExtraSpaces;
//# sourceMappingURL=stringUtils.js.map