Files
infocom-systems-design/node_modules/lodash-es/_asciiToArray.js
2025-10-03 22:27:28 +03:00

13 lines
255 B
JavaScript

/**
* Converts an ASCII `string` to an array.
*
* @private
* @param {string} string The string to convert.
* @returns {Array} Returns the converted array.
*/
function asciiToArray(string) {
return string.split('');
}
export default asciiToArray;