1.0.3 • Published 5 years ago

m.uuid v1.0.3

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

m.uuid

m(icro)uuid is a lightweight RFC4122v4 compliant uuid implementation written in es6+

travis dependencies coverage status linter

node version license minzip downloads

install

npm install m.uuid

usage

const {uuid} = require('m.uuid') // uses `Math.random()` which is ~25x faster.

uuid() // b4b1f122-3344-4f1b-961a-023ef51e2693
const {uuid} = require('m.uuid/crypto') // uses `crypto.randomBytes()` with less chance of collision.

uuid() // afc2a706-3c77-473b-b2df-ebc356d13fd3
1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago

0.0.0-draft.0

5 years ago