* Converts a Unicode `string` to an array. * * @private * @param {string} string The string to convert. * @returns {Array} Returns the converted array.
(string)
| 9094 | * @returns {Array} Returns the converted array. |
| 9095 | */ |
| 9096 | function unicodeToArray(string) { |
| 9097 | return string.match(reUnicode) || []; |
| 9098 | } |
| 9099 | |
| 9100 | /** |
| 9101 | * Splits a Unicode `string` into an array of its words. |