UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

10 lines (9 loc) 252 B
export default unicodeToArray; /** * Converts a Unicode `string` to an array. * * @private * @param {string} string The string to convert. * @returns {Array} Returns the converted array. */ declare function unicodeToArray(string: string): any[];