Files
Kmake/test/fixtures/es-module-shadow-realm/state-counter.mjs

5 lines
74 B
JavaScript
Raw Normal View History

2026-05-26 23:36:42 -07:00
let counter = 0;
export const getCounter = () => {
return counter++;
};