UNPKG

@stryker-mutator/core

Version:

The extendable JavaScript mutation testing framework

7 lines (6 loc) 99 B
export class IdGenerator { private id = 0; public next(): number { return this.id++; } }