Files
architype/IdSource.js
2019-07-11 22:30:53 +00:00

20 lines
234 B
JavaScript

class IdSource {
constructor() {
this.nextId_ = 1;
}
getId() {
return ++this.nextId_;
}
peekId() {
return this.nextId_;
}
setId(nextId) {
this.nextId_ = nextId;
}
}
const idSource = new IdSource();