* Converts a Unicode `string` to an array. * * @private * @param {string} string The string to convert. * @returns {Array} Returns the converted array.
(string)
| 301 | * @returns {Array} Returns the converted array. |
| 302 | */ |
| 303 | function unicodeToArray(string) { |
| 304 | return string.match(reUnicode) || []; |
| 305 | } |
| 306 | |
| 307 | /** Used for built-in method references. */ |
| 308 | const funcProto = Function.prototype; |