Generate UUID-like strings with Crypto in Node.JS
const crypto = require('crypto');
let uuidStyleStr = crypto.randomBytes(4).toString('hex') + "-" +
crypto.randomBytes(2).toString('hex') + "-" +
crypto.randomBytes(2).toString('hex') + "-" +
crypto.randomBytes(2).toString('hex') + "-" +
crypto.randomBytes(