Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 | 2x 2x 2x 1047x 1047x 2x 11679x 11679x 2x 2x 2x | export class IncrementId {
private value = 0;
public equal(id: number) {
return this.value === id;
}
public next() {
return ++this.value;
}
}
export const PAGE_ID = new IncrementId();
export const LAYER_ID = new IncrementId();
|