Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/metaory/uuidify

takes long string and return uuid format
https://github.com/metaory/uuidify

npm npm-package

Last synced: about 2 months ago
JSON representation

takes long string and return uuid format

Awesome Lists containing this project

README

        

uuidify
=======

takes long string and return uuid format

Installation
============
npm i uuidify

Usage
=====

```javascript
const uuidify = require('uuidify')

// Pass long string
const uuid = uuidify('8c68964b5be74a23b01987e479e49016');

console.log(uuid);
// 8c68964b-5be7-4a23-b019-87e479e49016
```