UNPKG

@yncoder/element-react

Version:
9 lines (8 loc) 110 B
export class IDGenerator { constructor(){ this.id = 0 } next(){ return this.id++ & 0xffff } }