00001 00002 var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g; 00003 00011 function asciiWords(string) { 00012 return string.match(reAsciiWord) || []; 00013 } 00014 00015 module.exports = asciiWords;