UNPKG

161 BJavaScriptView Raw
1export class IdGenerator {
2 constructor() {
3 this.id = 0;
4 }
5 next() {
6 return this.id++;
7 }
8}
9//# sourceMappingURL=id-generator.js.map
\No newline at end of file