base360-emoji
v2.0.0
Published
π A trecentosexagesimal (360) numeral system themed around emojis
Readme
The idea for this project came about as a joke although this package may have some actual usage
Installing
For npm:
$ npm install base360-emojiFor yarn:
$ yarn add base360-emojiBasic Example
const Base360 = require('base360-emoji');
// some very large number
const number = 100n ** 10n;
const encoded = Base360.encode(number); // π©°ππ©πππ¦
ππ
const decoded = Base360.decode(encoded); // 100000000000000000000nTodo
- Does this actually save space for larger numbers than base10, base16, and base32?
- Time complexity of the functions
