Security update to Drupal 8.4.6
[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 };