An open API service indexing awesome lists of open source software.

https://github.com/streamich/v4-uuid

Simple UUID for browser without crypto dependency
https://github.com/streamich/v4-uuid

Last synced: 10 months ago
JSON representation

Simple UUID for browser without crypto dependency

Awesome Lists containing this project

README

          

# v4-uuid

Simple Version 4 (random) UUID generator for browser, without any dependencies.
Calls `Math.random()` twice to generate a single UUID.

## Usage

```shell
npm i v4-uuid
```

now

```js
import uuid from 'v4-uuid';

console.log(uuid())
```

## License

[Unlicense](LICENSE) — public domain.