1.0.7 • Published 1 year ago
alphabet-running-code v1.0.7
Generates Next Alphabet Code
const codeGen = require('alphabet-running-code');
const nextCode = codeGen.getNextCode("ABCD");
console.log("Next code", nextCode);
import { getNextCode, getNextCodeWithDecoration } from 'alphabet-running-code';
const nextCode = getNextCode("ABCD");
console.log("Next code", nextCode);
const nextCoded = getNextCodeWithDecoration("ABCD", "(", ")");
console.log("Next code", nextCoded);
Installation
Installation is done using the
npm install
command:
$ npm install alphabet-running-code
Features
- Generate Next Alphabetic Sequence, say: AAA => AAB
- Generate Next Alphabetic Sequence with prefix and suffixß