JSPM

bigint-base-converter

0.1.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 19814
  • Score
    100M100P100Q153667F

Convert big integers from any base to any base

Package Exports

  • bigint-base-converter

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (bigint-base-converter) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

bigint-base-converter

Node package for converting integers between bases. Integers do not have to fit in a javascript native number.

To install:

npm install bigint-base-converter

To import:

var convertBase = require('bigint-base-converter');

To use:

convertBase(value, fromBase, toBase)

fromBase and toBase may be integers or alphabet strings. If integer, the output/intput will (be/expected to be) an array of numbers in that base. If string, the output/input will (be/expected to be) encoded using the characters in the string as the digits (with the base as the length of the string parameter).