1.0.0 • Published 7 years ago

@orodio/uuid v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

@orodio/params

Build Status

Install

yarn add @orodio/params

Use

import uuid from "@orodio/uuid"

const a = uuid() // xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
const b = uuid() // xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx

a === b // false

// where x = [0-9a-z]

Dev

$ make               # see make help
$ make help          # shows all the make commands
$ make build         # build stuff puts it in /lib
$ make build-watch   # make build but all the time
$ make test          # tests the stuff
$ make test-watch    # make test but all the time
$ make version       # creates a patch tag
$ make version-minor # creates a minor tag
$ make version-major # creates a major tag
$ make publish       # publishes the module