• File: _asciiToArray.js
  • Full Path: /var/www/nodejs/callDir/node_modules/lodash/_asciiToArray.js
  • Date Modified: 06/03/2024 5:11 PM
  • File size: 257 bytes
  • MIME-type: text/plain
  • Charset: utf-8
/**
 * 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('');
}

module.exports = asciiToArray;