@codinasion/hexadecimal
v1.0.2
Published
A collection of useful TypeScript functions and utilities for converting hexadecimal to other number systems.
Downloads
7
Maintainers
Readme
@codinasion/hexadecimal
A collection of useful TypeScript functions and utilities for converting hexadecimal to other number systems.
Installation
# if you're using pnpm
pnpm add @codinasion/hexadecimal
# or, if you're using npm
npm install @codinasion/hexadecimal
# or, if you're using yarn
yarn add @codinasion/hexadecimal
Usage
import { HexadecimalToBinary } from "@codinasion/hexadecimal";
const hexadecimal = "80";
const binary = HexadecimalToBinary(hexadecimal);
console.log(binary);
// Output
// 10000000