clean.js 116 Bytes Raw Blame History Permalink 1 2 3 4 5 var trim = require('./trim'); module.exports = function clean(str) { return trim(str).replace(/\s\s+/g, ' '); };