UNPKG

@68publishers/amp-client

Version:

JS Client for 68publishers/amp

12 lines (9 loc) 182 B
export class SequenceGenerator { #lastId; constructor (start = 1) { this.#lastId = start -1; } getNextIdentifier() { return ++this.#lastId; } }