src/app/core/application/identifier.js
export class Identifier {
constructor() {
this.number = 1;
}
next() {
return this.number++;
}
}
export const identifier = new Identifier();
export class Identifier {
constructor() {
this.number = 1;
}
next() {
return this.number++;
}
}
export const identifier = new Identifier();