this repo has no description
0
fork

Configure Feed

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

Improve docs

+15 -3
+3 -2
package.json
··· 1 1 { 2 2 "name": "bb26", 3 3 "version": "2.2.0", 4 - "description": "Bijective base-26 utility functions for converting numbers to/from spreadsheet column letters", 4 + "description": "Utilities for working with bijective base-26 numerals", 5 5 "repository": "github:ptrkcsk/BB26", 6 6 "author": "Patrik Csak <p@trikcsak.com>", 7 7 "license": "MIT", ··· 15 15 "hexavigesimal", 16 16 "spreadsheet", 17 17 "spreadsheet column", 18 - "spreadsheet column letters" 18 + "spreadsheet column letters", 19 + "license plate serials" 19 20 ], 20 21 "main": "dist", 21 22 "files": [
+12 -1
readme.md
··· 2 2 3 3 [![Test Coverage](https://api.codeclimate.com/v1/badges/c56701b3968f3de65188/test_coverage)](https://codeclimate.com/github/ptrkcsk/BB26/test_coverage) [![Maintainability](https://api.codeclimate.com/v1/badges/c56701b3968f3de65188/maintainability)](https://codeclimate.com/github/ptrkcsk/BB26/maintainability) [![BB26 minified and gzipped size](https://badgen.net/bundlephobia/minzip/bb26)](https://bundlephobia.com/result?p=bb26) 4 4 5 - JavaScript [bijective base-26](https://en.wikipedia.org/wiki/Bijective_numeration#The_bijective_base-26_system) utility functions for converting numbers to/from spreadsheet column letters 5 + 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 6 + 7 + ## What is bijective base-26 numeration? 8 + 9 + You're probably familiar with BB26 numeration, even if you didn't know that's what it was called. BB26 numbers are used in spreadsheet columns, license plate serials, and (probably?) more. 10 + 11 + Here's an example of decimal (base-10) numbers (the numbers you use every day to count things) compared to their corresponding BB26 numbers: 12 + 13 + ``` 14 + Decimal: | 1 | 2 | 3 | ... | 24 | 25 | 26 | 27 | 28 | 29 | ... 15 + BB26: | A | B | C | ... | X | Y | Z | AA | AB | AC | ... 16 + ``` 6 17 7 18 ## Installation 8 19