UNPKG

gbx

Version:

a slim, fast and easy to set up Gamebox (GBX) parser written in TypeScript

12 lines (11 loc) 283 B
/** * Handles hexadecimal numbers. */ export default class Hex { /** * Converts a decimal number to a hexadecimal string. * @param decimal The decimal number to convert. * @returns A hexadecimal string. */ static fromDecimal(decimal: number): string; }