UNPKG

element-react-codish

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