@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
7 lines • 303 B
TypeScript
/**
* Convert a decimal value to hex
* @param {number} x generally expects b byte value, 0-255
* @returns {string} zero-padded value, for example instead of "0", will return "00" and instead of "F" will return "0F"
*/
export function dec2hex(x: number): string;
//# sourceMappingURL=dec2hex.d.ts.map