| Leo Repp | 58b9f11 | 2021-11-22 11:57:47 +0100 | [diff] [blame^] | 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 | |||||
| 12 | module.exports = asciiToArray; | ||||