1.0.1 • Published 4 years ago
next-incremented-string v1.0.1
next-incremented-string
Avoid having to create random string ids, by having them incremented in the similar way of how numbers are.
instalation
# Using npm
npm install next-incremented-string
# Using Yarn
yarn add next-incremented-string
how to use it
import { incrementString } from 'next-incremented-string';
const nextString = incrementString("AAA");
console.log(nextString);
//AAB