1.0.4 • Published 3 years ago

alphanumericidy v1.0.4

Weekly downloads
4
License
MIT
Repository
github
Last release
3 years ago

What is this?

Generate unique alphanumericid for your projects.

Installation

npm i alphanumericidy --save

Then...

const { alphanumericid } = require('alphanumericidy')

OR

import { alphanumericid } from 'alphanumericidy';

//For shortid

alphanumericid({
  shortid:true
});


//For longid

alphanumericid({
  longid:true
});

//Or You can Just pass any number

alphanumericid(7);

Options

  • shortid - boolean (Defaults to false)
  • longid - boolean (Defaults to false)

Length

  • shortid - 5
  • longid - 10
1.0.4

3 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago