UNPKG

@u4/adbkit

Version:

A Typescript client for the Android Debug Bridge.

14 lines 324 B
export default class RollingCounter { constructor(max, min = 1) { this.max = max; this.min = min; this.now = this.min; } next() { if (!(this.now < this.max)) { this.now = this.min; } return ++this.now; } } //# sourceMappingURL=rollingcounter.js.map