1.0.0 • Published 5 years ago

@jmcdo29/juid v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

genUUID

Build Status codecov

A quick Node package to generate a version 4 variant 1 UUID.


To install the package run npm install @jmcdo/juid or yarn install @jmcdo/juid.

Import the package

into TypeScript with

import { genUUID } from '@jmcdo/juid';

or into JavaScript with

const genuuid = require('@jmcdo/juid');

Use the function

in TypeScript with

const id = genUUid();

and in JavaScript with

const id = genuuid.genUUID();