Simplifying test.

This commit is contained in:
pschwartau%netscape.com 2002-09-28 02:52:28 +00:00
parent 3a4b565155
commit 874efdd48d

View File

@ -195,7 +195,7 @@ function addThis()
*/
function stripWhite(str)
{
var re = /([ \t\n\v\f\r]|\\t|\\n)/g;
var re = /\s|\\t|\\n/g;
return str.replace(re, '');
}