UNPKG

condense-whitespace

Version:

Remove leading, trailing, and repeated whitespace from a string

8 lines (6 loc) 212 B
export default function condenseWhitespace(string) { if (typeof string !== 'string') { throw new TypeError(`Expected a string, got \`${typeof string}\``); } return string.trim().replace(/\s{2,}/gu, ' '); }