Skip to content

Instantly share code, notes, and snippets.

@christocracy
Created October 19, 2010 18:33
Show Gist options
  • Save christocracy/634761 to your computer and use it in GitHub Desktop.
Save christocracy/634761 to your computer and use it in GitHub Desktop.
foo.js
/**
* @class Foo
* @singleton
*/
Foo = (function() {
return {
/**
* getFoo
*/
getFoo: function() {
console.log('foo');
}
}
})();
@christocracy
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment