dechexbin

1.2.1 • Public • Published

Converter for various number systems.

Syntax


newValue = DecHexBin(oldValue, oldType, newType, [numberSystem]);

oldType and newType can be a string ("dec", "hex", "bin") or a number (16 for hex, 10 for dec, etc) or a cypher ("#0123456789", the hashtag is required)

numberSystem can be Number or BigInt (or something similar). By default it's Number.

Warning: The default cypher uses uppercase letters, i.e. use FF instead of ff

Example


var DecHexBin = require("dechexbin");

console.log(DecHexBin("FF", "hex", "dec")); // 255
    
console.log(DecHexBin("1111", "bin", 8)); // 17

console.log(DecHexBin("3120434303123", 5, "#Kartoffelsalat")); // ellfsarf

Other


DecHexBin uses normal numbers by default. You can use BigInts by using another argument:

var DecHexBin = require("dechexbin");

console.log(DecHexBin("FFFFFFFFFFFFFFFF", 16, 10, BigInt));

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i dechexbin

      Weekly Downloads

      8

      Version

      1.2.1

      License

      MIT

      Unpacked Size

      8.05 kB

      Total Files

      5

      Last publish

      Collaborators

      • dark_