1.3.3 ⢠Published 4 years ago
mathbases v1.3.3
Install
npm install mathbases --saveUsage
Decimal to Binary
const { allYour } = require("mathbases");
allYour("decimal").areBelongTo("binary")(50); // '110010'Binary to Decimal
const { allYour } = require("mathbases");
allYour("binary").areBelongTo("decimal")(110010); // '50'Decimal to hexadecimal
const { allYour } = require("mathbases");
allYour("decimal").areBelongTo("hexadecimal")(50); // '32'Hexadecimal to decimal
const { allYour } = require("mathbases");
allYour("hexadecimal").areBelongTo("decimal")(32); // '50'Run tests
npm run testAuthor
š¤ Hebert Cisco
- Website: https://hebertbarros.me/
- Twitter: @hebertcisco
- Github: @hebertcisco
- LinkedIn: @hebert-f-barros
Show your support
Give a āļø if this project helped you!
š License
Copyright Ā© 2021 Hebert Cisco.
This project is MIT licensed.