UNPKG

gold-sight

Version:

Test your code on realistic content, precisely

15 lines 329 B
class AbsCounter { constructor(targetIndex) { this.index = 0; this.targetIndex = targetIndex; } match() { if (this.index === this.targetIndex) { return true; } this.index++; return false; } } export { AbsCounter }; //# sourceMappingURL=absCounter.js.map