@v4fire/core
Version:
V4Fire core library
19 lines (18 loc) • 354 B
TypeScript
/*!
* V4Fire Core
* https://github.com/V4Fire/Core
*
* Released under the MIT license
* https://github.com/V4Fire/Core/blob/master/LICENSE
*/
/**
* Returns a symbol from the passed HEX char string
* @param str
*
* @example
* ```
* // '😀'
* console.log(fromHex('0x1f600'));
* ```
*/
export declare function fromHex(str: string): string;