UNPKG

doku-nodejs-library

Version:
13 lines (12 loc) 383 B
"use strict" module.exports = { generateExternalId() { const uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { const r = Math.random() * 16 | 0; const v = c == 'x' ? r : (r & 0x3 | 0x8); return v.toString(16); }); const timestamp = Date.now(); return `${uuid}-${timestamp}`; }, }