bharat-id-generator
v1.0.1
Published
A timestamp based sequencer id generator
Maintainers
Readme
Unique-ID-Generator
Follow the steps below to use the module.
Install the package by running
npm install bharat-id-generatorImport and Call the function as follows :
import generateUID from "./index.js";
const id = generateUID("TEST");
// Here the string "TEST" is the prefix that one can add to their UIDs.
console.log('id -->' + id ); 