UNPKG

@rashedmakkouk/dev-utils

Version:
9 lines (8 loc) 233 B
/** * Removes leading and trailing spaces and replaces multiple whitespace, tabs * and newlines with one space. * * @returns Trimmed text. */ declare function trimWhitespace(text: string): string; export default trimWhitespace;