Skip to content

Instantly share code, notes, and snippets.

@ccnokes
Created October 25, 2016 03:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ccnokes/dffe1778059d168ad3cb9c3ee751203a to your computer and use it in GitHub Desktop.
Save ccnokes/dffe1778059d168ad3cb9c3ee751203a to your computer and use it in GitHub Desktop.
stateful module
let count = 0;
module.exports = {
get count() {
return count;
}
increment() {
return count++;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment