diff --git a/public/src/utils.js b/public/src/utils.js index 9f6a9f3c12..71d695fffa 100644 --- a/public/src/utils.js +++ b/public/src/utils.js @@ -11,7 +11,7 @@ generateUUID: function() { return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { var r = Math.random() * 16 | 0, - v = c == 'x' ? r : (r & 0x3 | 0x8); + v = c === 'x' ? r : (r & 0x3 | 0x8); return v.toString(16); }); }, @@ -225,4 +225,4 @@ module: { exports: {} } -} : module) \ No newline at end of file +} : module); \ No newline at end of file