artdaq_node_server  v1_00_08
 All Classes Namespaces Files Variables Pages
_asciiWords.js
1 
2 var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;
3 
11 function asciiWords(string) {
12  return string.match(reAsciiWord) || [];
13 }
14 
15 module.exports = asciiWords;