Skip to content

Instantly share code, notes, and snippets.

@wrumsby
Created July 21, 2013 08:36
Show Gist options
  • Save wrumsby/6047941 to your computer and use it in GitHub Desktop.
Save wrumsby/6047941 to your computer and use it in GitHub Desktop.
AMD Singleton
define([], function () {
'use strict';
var i = 0;
return {
next: function () {
return i++;
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment