source: imaps-frontend/node_modules/lodash-es/_asciiToArray.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 255 bytes
Line 
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 */
8function asciiToArray(string) {
9 return string.split('');
10}
11
12export default asciiToArray;
Note: See TracBrowser for help on using the repository browser.