Updated from some -dev modules to alpha, beta or full releases
[yaffs-website] / node_modules / underscore.string / clean.js
1 var trim = require('./trim');
2
3 module.exports = function clean(str) {
4   return trim(str).replace(/\s\s+/g, ' ');
5 };