abc-list
v1.0.4
Published
Convert a to 0, z to 25, and reverse it
Downloads
142
Readme
abc-list
Convert a to 0, z to 25, and reverse it
Installation
npm install --save abc-list
Usage
import { fromAbc, toAbc } from 'abc-list'
fromAbc('a') // 0
fromAbc('b') // 1
fromAbc('az') // 51
toAbc(0) // 'a'
toAbc(1) // 'b'
toAbc(51) // 'az'
License
MIT