Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

13 lignes
257 B

  1. /**
  2. * Converts an ASCII `string` to an array.
  3. *
  4. * @private
  5. * @param {string} string The string to convert.
  6. * @returns {Array} Returns the converted array.
  7. */
  8. function asciiToArray(string) {
  9. return string.split('');
  10. }
  11. module.exports = asciiToArray;