Created
November 13, 2014 16:06
-
-
Save seeruk/23fe4b1a23f1d9ec8cc4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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