1.3.3 ā€¢ Published 3 years ago

mathbases v1.3.3

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

Install

npm install mathbases --save

Usage

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 test

Author

šŸ‘¤ Hebert Cisco

Show your support

Give a ā­ļø if this project helped you!

šŸ“ License

Copyright Ā© 2021 Hebert Cisco.

This project is MIT licensed.


1.3.3

3 years ago

1.3.2

3 years ago

1.3.1

4 years ago

1.3.0

4 years ago

1.2.9

4 years ago

1.2.8

4 years ago

1.2.7

4 years ago

1.2.6

4 years ago

1.2.5

4 years ago

1.2.4

4 years ago

1.2.3

4 years ago

1.2.2

4 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.5

4 years ago