@codinasion/octal
A collection of useful TypeScript functions and utilities for converting octal to other number systems.
Installation
# if you're using pnpm
pnpm add @codinasion/octal
# or, if you're using npm
npm install @codinasion/octal
# or, if you're using yarn
yarn add @codinasion/octal
Usage
import { OctalToDecimal } from "@codinasion/octal";
const octal = "200";
const decimal = OctalToDecimal(octal);
console.log(decimal);
// Output
// 128
Sponsors & Backers
Made with 💖 by Codinasion