0.1.8 • Published 2 years ago

@highoutput/object-id v0.1.8

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

@highoutput/object-id

Generate unique ids

Usage

import { ObjectId } from '@highoutput/object-id';

enum ObjectType = {
  User = 0,
  Post = 1,
}

const id = new ObjectId(ObjectType.User);

console.log(id.toString());