https://github.com/ddinan/alphanum-to-num
Converts alphanumeric codes into numbers.
https://github.com/ddinan/alphanum-to-num
algorithm algorithms alphanumeric code codes math mathematics maths permutation permutation-algorithms permutations sequence sequencing
Last synced: 9 months ago
JSON representation
Converts alphanumeric codes into numbers.
- Host: GitHub
- URL: https://github.com/ddinan/alphanum-to-num
- Owner: ddinan
- Created: 2021-09-08T05:15:54.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-05-03T13:25:17.000Z (over 2 years ago)
- Last Synced: 2025-03-06T03:08:27.801Z (9 months ago)
- Topics: algorithm, algorithms, alphanumeric, code, codes, math, mathematics, maths, permutation, permutation-algorithms, permutations, sequence, sequencing
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/alphanumeric-to-number
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Installation
Using NPM:
`$ npm i alphanumeric-to-number`
Using Node.js:
```js
var AlphanumToNum = require('alphanumeric-to-number');
var number = AlphanumToNum.toNumber('D8374');
```