NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/lodash/_asciiToArray.js

13 lines
257 B
Java
Raw Normal View History

2023-09-14 14:47:11 +08:00
/**
* 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;