mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
10 lines
130 B
TypeScript
10 lines
130 B
TypeScript
|
|
export const increment = (n: number = 0) => {
|
|
let counter = n;
|
|
|
|
return () => {
|
|
counter += 1;
|
|
return counter;
|
|
};
|
|
};
|