forked from mirrors/gecko-dev
Differential Revision: https://phabricator.services.mozilla.com/D47149 --HG-- extra : moz-landing-system : lando
28 lines
701 B
JavaScript
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);
|
|
},
|
|
};
|