Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save amrishodiq/cffcd03a48c5bf9b10edec5d406b2fd4 to your computer and use it in GitHub Desktop.

Select an option

Save amrishodiq/cffcd03a48c5bf9b10edec5d406b2fd4 to your computer and use it in GitHub Desktop.
Lazy Load Singleton JavaScript Database
var db = null;
function getDatabase() {
if (db == null) {
db = openDatabase('smartCitizen', '1.0', 'Smart Citizen', 2 * 1024 * 1024);
}
return db;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment