rittenhop-dev/versions/5.94.2/node_modules/condense-whitespace/index.js
2024-09-23 19:40:12 -04:00

10 lines
177 B
JavaScript

'use strict';
module.exports = string => {
if (typeof string !== 'string') {
throw new TypeError('Expected a string');
}
return string.trim().replace(/\s{2,}/g, ' ');
};