* Converts an ASCII `string` to an array. * * @private * @param {string} string The string to convert. * @returns {Array} Returns the converted array.
(string)
| 135 | * @returns {Array} Returns the converted array. |
| 136 | */ |
| 137 | function asciiToArray(string) { |
| 138 | return string.split(""); |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * The base implementation of `_.times` without support for iteratee shorthands |