fune/toolkit/components/normandy/lib/NormandyUtils.jsm
Michael Cooper eee1edd088 Bug 1555176 - Add enrollmentIds to all Normandy telemetry. r=Gijs
Differential Revision: https://phabricator.services.mozilla.com/D47149

--HG--
extra : moz-landing-system : lando
2019-09-26 17:35:15 +00:00

28 lines
701 B
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
var EXPORTED_SYMBOLS = ["NormandyUtils"];
const { XPCOMUtils } = ChromeUtils.import(
"resource://gre/modules/XPCOMUtils.jsm"
);
XPCOMUtils.defineLazyServiceGetter(
this,
"uuidGenerator",
"@mozilla.org/uuid-generator;1",
"nsIUUIDGenerator"
);
var NormandyUtils = {
generateUuid() {
// Generate a random UUID, convert it to a string, and slice the braces off the ends.
return uuidGenerator
.generateUUID()
.toString()
.slice(1, -1);
},
};