All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.lodash._asciiToArray.js Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
/**
 * 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;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy