UNPKG

399 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.ModulesContainer = void 0;
4const uuid_1 = require("uuid");
5class ModulesContainer extends Map {
6 constructor() {
7 super(...arguments);
8 this._applicationId = (0, uuid_1.v4)();
9 }
10 get applicationId() {
11 return this._applicationId;
12 }
13}
14exports.ModulesContainer = ModulesContainer;