mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-12-29 02:11:28 -06:00
18 lines
432 B
JavaScript
18 lines
432 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Generates a guid,
|
|
* http://stackoverflow.com/questions/105034/create-guid-uuid-in-javascript
|
|
*
|
|
* @return {String} guid value in string
|
|
*/
|
|
function getGuid() {
|
|
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g,
|
|
function (c) {
|
|
let r = Math.random() * 16 | 0, v = c === 'x' ? r : (r & 0x3 | 0x8);
|
|
return v.toString(16);
|
|
});
|
|
}
|
|
|
|
module.exports = getGuid;
|