Skip to content

Instantly share code, notes, and snippets.

@julesbou
Created March 11, 2016 14:54
Show Gist options
  • Save julesbou/1e1db9871236a37418e2 to your computer and use it in GitHub Desktop.
Save julesbou/1e1db9871236a37418e2 to your computer and use it in GitHub Desktop.
var db = {
// will be called only once
connect: _.once(function() {
/* .. do something .. */
}),
find: function(id) {
// lazy connection
this.connect();
return /* .. something .. */;
},
findall: function() {
// lazy connection
this.connect();
return /* .. something.. */;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment