"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.nextUid = void 0;
var seq = 0;
var nextUid = exports.nextUid = function nextUid() {
var prefix = Math.random().toString(16).slice(2, 5);
return "".concat(prefix).concat(++seq);
};