1.1.0 • Published 8 years ago

base-convertor v1.1.0

Weekly downloads
11
License
ISC
Repository
github
Last release
8 years ago

Base conversion

Convert data from any base to any base

API/usage

var convert = require('base-convertor');
//convert(data_string, input_chars, output_chars)

  //display 17 (base 10)
console.log(convert('10001', '01', '0123456789').toString()); 
  
  //display 10001 (binary format)

console.log(convert('17', '0123456789', '01').toString());

Credits

Keywords / shout box

base, conversion, bin2hex, hex2bin, bin2dec, hex2dec, dec2bin, dex2hex, dec2dec