Add empty line after require

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-10-19 11:40:14 +03:00
parent 1a4cc379bd
commit f0fbe0c3e5
9 changed files with 10 additions and 1 deletions

View File

@ -9,6 +9,7 @@ Generates a UUID in Node.JS.
```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)