Sign up for a GitHub account Sign in All Gists lykkin / gist:9831f8bb88eccd1a61e1 Created July 07, 2015 Code Revisions 1 /.sunken-menu-group /.sunken-menu-contents Embed HTTPS SSH You can clone with HTTPS or SSH . Download Gist /.only-with-full-nav closure based caching View gist:9831f8bb88eccd1a61e1 gistfile1.js Raw File suppressed. Click to show. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 ' use strict ' function Obj () {} Obj . prototype . getVal = getVal Obj . prototype . clearCache = function clearCachedVal () { console .log ( ' clearing the cache ' ) this .getVal = getVal } function getVal ( x ) { var _val console .log ( ' setting cached data ' ) this .getVal = function g...