UNPKG

@anysphere/scip-typescript

Version:

SCIP indexer for TypeScript and JavaScript

14 lines (13 loc) 255 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Counter = void 0; class Counter { constructor() { this.n = -1; } next() { this.n++; return this.n; } } exports.Counter = Counter;