Skip to content

Instantly share code, notes, and snippets.

@seeruk
Created November 13, 2014 16:06
Show Gist options
  • Save seeruk/23fe4b1a23f1d9ec8cc4 to your computer and use it in GitHub Desktop.
Save seeruk/23fe4b1a23f1d9ec8cc4 to your computer and use it in GitHub Desktop.
Cache.set("example", "Will I be console.log'd?");
Cache.delete("example");
var proxied = Cache.proxy("example", "Or will I?");
proxied.then(function(value) {
console.log(value);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment