this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

make punctuation consisten

Patrik Csak 965da6ab 449ac8c0

+5 -5
+5 -5
readme.md
··· 1 1 # BB26 2 2 3 - BB26 is a JavaScript library for working with [bijective base-26](https://en.wikipedia.org/wiki/Bijective_numeration#The_bijective_base-26_system) (BB26) numbers 3 + BB26 is a JavaScript library for working with [bijective base-26](https://en.wikipedia.org/wiki/Bijective_numeration#The_bijective_base-26_system) (BB26) numbers. 4 4 5 5 ## What is bijective base-26 numeration? 6 6 7 - You’re probably familiar with BB26 numeration. It’s used for spreadsheet columns, license plate serials, and (probably?) more 7 + You’re probably familiar with BB26 numeration. It’s used for spreadsheet columns, license plate serials, and (probably?) more. 8 8 9 9 Here’s an example of decimal (base-10) numbers (the numbers you use every day to count things) compared to their corresponding BB26 numbers: 10 10 ··· 27 27 function increment(string: string): string; 28 28 ``` 29 29 30 - Increments a bijective base-26 string by one numeral 30 + Increments a bijective base-26 string by one numeral. 31 31 32 32 ```javascript 33 33 import {increment} from 'bb26'; ··· 78 78 function toBb26(number: number): string; 79 79 ``` 80 80 81 - Converts a decimal number to a bijective base-26 string 81 + Converts a decimal number to a bijective base-26 string. 82 82 83 83 ```javascript 84 84 import {toBb26} from 'bb26'; ··· 96 96 function toDecimal(string: string): number; 97 97 ``` 98 98 99 - Converts a bijective base-26 string to a decimal number 99 + Converts a bijective base-26 string to a decimal number. 100 100 101 101 ```javascript 102 102 import {toDecimal} from 'bb26';