mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-01 00:32:11 +00:00
7f9229d43d
This will help transition to ES Modules as this symbol is exposed to them. $ sed -ie "/require(.Services.)/d" $(git grep -l 'require("Services")' devtools/) $ sed -ie "/loader.lazyRequireGetter(this, .Services./d" $(git grep -l 'loader.lazyRequireGetter(this, "Services"' devtools/) + the edition of builtin-modules.js + eslintrc.js + manual eslint fixes + removal of devtools-services in the debugger, except for jest tests Differential Revision: https://phabricator.services.mozilla.com/D156401
15 lines
334 B
JavaScript
15 lines
334 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";
|
|
|
|
const { generateUUID } = Services.uuid;
|
|
|
|
/**
|
|
* Returns a new `uuid`.
|
|
*
|
|
*/
|
|
|
|
module.exports = { generateUUID };
|