Sicuramente esiste qualcosa di piu' semplice ed elegante...

codice:
stringa="  a b  c   d     e               f             "
str = stringa.replace(/^\s*/,"").replace(/\s*$/,"").replace(/\s+/g," ")
document.write("<pre>*"+str+"*</pre>")
ciao