00001 00008 function asciiToArray(string) { 00009 return string.split(''); 00010 } 00011 00012 module.exports = asciiToArray;