Merge pull request #381 from KingDGrizzle/fix-uuid

[FIX: #376] Update UUIDGenerator with new examples
This commit is contained in:
Angelos Chalaris
2017-12-29 10:13:05 +02:00
committed by GitHub
3 changed files with 23 additions and 5 deletions

View File

@ -1,16 +1,16 @@
### UUIDGenerator ### UUIDGeneratorBrowser
Generates a UUID. Generates a UUID in a browser.
Use `crypto` API to generate a UUID, compliant with [RFC4122](https://www.ietf.org/rfc/rfc4122.txt) version 4. Use `crypto` API to generate a UUID, compliant with [RFC4122](https://www.ietf.org/rfc/rfc4122.txt) version 4.
```js ```js
const UUIDGenerator = () => const UUIDGeneratorBrowser = () =>
([1e7] + -1e3 + -4e3 + -8e3 + -1e11).replace(/[018]/g, c => ([1e7] + -1e3 + -4e3 + -8e3 + -1e11).replace(/[018]/g, c =>
(c ^ (crypto.getRandomValues(new Uint8Array(1))[0] & (15 >> (c / 4)))).toString(16) (c ^ (crypto.getRandomValues(new Uint8Array(1))[0] & (15 >> (c / 4)))).toString(16)
); );
``` ```
```js ```js
UUIDGenerator(); // '7982fcfe-5721-4632-bede-6000885be57d' UUIDGeneratorBrowser(); // '7982fcfe-5721-4632-bede-6000885be57d'
``` ```

View File

@ -0,0 +1,17 @@
### UUIDGeneratorNode
Generates a UUID in Node.JS.
Use `crypto` API to generate a UUID, compliant with [RFC4122](https://www.ietf.org/rfc/rfc4122.txt) version 4.
```js
const crypto = require("crypto");
const UUIDGeneratorNode = () =>
([1e7] + -1e3 + -4e3 + -8e3 + -1e11).replace(/[018]/g, c =>
(c ^ (crypto.randomBytes(1)[0] & (15 >> (c / 4)))).toString(16)
);
```
```js
UUIDGeneratorNode(); // '79c7c136-60ee-40a2-beb2-856f1feabefc'
```

View File

@ -139,7 +139,8 @@ toSnakeCase:string
truncateString:string truncateString:string
truthCheckCollection:object truthCheckCollection:object
union:array union:array
UUIDGenerator:utility UUIDGeneratorBrowser:browser
UUIDGeneratorNode:node
validateNumber:utility validateNumber:utility
without:array without:array
words:string words:string