shoelace/src/internal/auto-increment.ts

6 wiersze
72 B
TypeScript

let id = 0;
export function autoIncrement(): number {
return ++id;
}