1
2
3
4
5
6
export const count = (async () => {
let count = 0;
function myApi() {
return count++;
}
})();