UNPKG

@technobuddha/library

Version:
9 lines (8 loc) 256 B
/** * Decode a UTF8 encoded string into unicode * * @param input the utf encoded string * @returns the decoded strings (which is encoded as UTF-16 by javascript) */ export declare function decodeUTF8(input: string): string; export default decodeUTF8;