source: frontend/node_modules/lodash/_asciiToArray.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 257 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
12module.exports = asciiToArray;
Note: See TracBrowser for help on using the repository browser.