blob: 8e3dd5b47fef4505602fb97e8882709929b2bd39 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001/**
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 */
8function asciiToArray(string) {
9 return string.split('');
10}
11
12module.exports = asciiToArray;