xstate
Version:
Finite State Machines and Statecharts for the Modern Web.
20 lines (18 loc) • 370 B
JavaScript
var children = /*#__PURE__*/new Map();
var sessionIdIndex = 0;
var registry = {
bookId: function () {
return "x:".concat(sessionIdIndex++);
},
register: function (id, actor) {
children.set(id, actor);
return id;
},
get: function (id) {
return children.get(id);
},
free: function (id) {
children.delete(id);
}
};
export { registry };