* Converts a Unicode `string` to an array. * * @private * @param {string} string The string to convert. * @returns {Array} Returns the converted array.
(string)
| 11983 | * @returns {Array} Returns the converted array. |
| 11984 | */ |
| 11985 | function unicodeToArray(string) { |
| 11986 | return string.match(reUnicode) || []; |
| 11987 | } |
| 11988 | |
| 11989 | /** |
| 11990 | * Splits a Unicode `string` into an array of its words. |