jsBenchmarker

Source of "whitespace-charcodes"

Back
var charcodes = [],
	ws = /\s/;
	
for( var i=0; i < 30000; i++ ){
	var chr = String.fromCharCode(i);
	if( ws.test(chr) )
		charcodes.push(i);
}

document.write( 'The charcodes are: ' + charcodes.join(', ') );