Socket
Socket
Sign inDemoInstall

any-to-any

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

any-to-any

convert numbers between bases (any base to any base) 🔀 ..


Version published
Weekly downloads
297
decreased by-36.54%
Maintainers
1
Weekly downloads
 
Created
Source

ANY-TO-ANY - converts numbers between bases ; binary , decimal , octal , hexadecimal and muche more ..


imed-jaberi

Build Status    Coverage Status    NPM version    License    Top Language    Code Size    Code of Conduct    PRs Welcome   

The purpose of this module is to convert numbers from any base to other base you want.

Limitation

This module can convert only the integers numbers between base 2 & base 36. Soon, it will be possible to convert real numbers [wip].

Installation

# npm ..
$ npm install any-to-any
# yarn ..
$ yarn add any-to-any

Usage

This is a practical example of how to use.

// const convert = require('any-to-any')
const { convert } = require("any-to-any");

const inputNumber = "1110111"; // 119 in decimal
const inputBase = 2;
const outputBase = 8;

const result = convert(inputNumber, inputBase, outputBase);
console.log(result);
//  167

// NOTE: in case the input number is consists of numbers only,
// you can enter the number to the function in number type ..
const inputNumber = 1110111; // 119 in decimal
const inputBase = 2;
const outputBase = 8;
const result = convert(inputNumber, inputBase, outputBase);
console.log(result);
//  167

Also, we have 2 exported methods to convert a value from any base to Decimal (base 10) called anyBaseToDecimal and the reverse one from Decimal to any base named decimalToAnyBase.

NOTE: There are a set of suggested examples that have been tested that you can follow here.

Note about the new experimental convert:

We export a new experimental method experimentalConvert maybe to solve problem of large numbers between hexa and decimal and up to 64 base.

You can use it with careful until we release the next major release (v5.0.0).

Please, if you find any problem or you have suggestion to improve the experiance with this module feel free to open an issue.

License

MIT © Imed Jaberi

Keywords

FAQs

Package last updated on 24 Apr 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc