4de3e5ded88441deeee71c8c2ca57bebcf6ec68dad2796405e5ae1bd5b4d8720e90d6d0da3f4e218b0318e3221ed4b674387226b857d0a3b8f96ba5c580050 257 B

123456789101112
  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;