···11# BB26
2233-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
33+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.
4455## What is bijective base-26 numeration?
6677-You’re probably familiar with BB26 numeration. It’s used for spreadsheet columns, license plate serials, and (probably?) more
77+You’re probably familiar with BB26 numeration. It’s used for spreadsheet columns, license plate serials, and (probably?) more.
8899Here’s an example of decimal (base-10) numbers (the numbers you use every day to count things) compared to their corresponding BB26 numbers:
1010···2727function increment(string: string): string;
2828```
29293030-Increments a bijective base-26 string by one numeral
3030+Increments a bijective base-26 string by one numeral.
31313232```javascript
3333import {increment} from 'bb26';
···7878function toBb26(number: number): string;
7979```
80808181-Converts a decimal number to a bijective base-26 string
8181+Converts a decimal number to a bijective base-26 string.
82828383```javascript
8484import {toBb26} from 'bb26';
···9696function toDecimal(string: string): number;
9797```
98989999-Converts a bijective base-26 string to a decimal number
9999+Converts a bijective base-26 string to a decimal number.
100100101101```javascript
102102import {toDecimal} from 'bb26';