Files
architype/IdSource.js

16 lines
191 B
JavaScript
Raw Normal View History

2019-07-11 05:12:08 +00:00
class IdSource {
constructor() {
this.nextId_ = 1;
}
getId() {
return ++this.nextId_;
}
setId(nextId) {
this.nextId_ = nextId;
}
}
const idSource = new IdSource();