UNPKG

@anysphere/scip-typescript

Version:

SCIP indexer for TypeScript and JavaScript

8 lines (7 loc) 103 B
export class Counter { private n = -1 public next(): number { this.n++ return this.n } }