mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-12-28 09:51:06 -06:00
28 lines
680 B
JavaScript
28 lines
680 B
JavaScript
'use strict';
|
|
|
|
const isDevEnv = process.env.ELECTRON_DEV ?
|
|
process.env.ELECTRON_DEV.trim().toLowerCase() === 'true' : false;
|
|
|
|
const isMac = (process.platform === 'darwin');
|
|
|
|
/**
|
|
* Generates a guid,
|
|
* http://stackoverflow.com/questions/105034/create-guid-uuid-in-javascript
|
|
*
|
|
* @return {String} guid value in string
|
|
*/
|
|
function getGuid() {
|
|
const guid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g,
|
|
function(c) {
|
|
var r = Math.random() * 16 | 0, v = c === 'x' ? r : (r & 0x3 | 0x8);
|
|
return v.toString(16);
|
|
});
|
|
return guid;
|
|
}
|
|
|
|
module.exports = {
|
|
isDevEnv: isDevEnv,
|
|
isMac: isMac,
|
|
getGuid: getGuid
|
|
};
|