preg_replace Javascript

var text = 'test   test   test test',
    fixed;
fixed = text.replace(/\s+/g, '-');
Disgusted Dogfish