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
| 'use strict'; | |
| var slothful = (function() { | |
| function _(step) { | |
| var getResult = function() { return step(); }; | |
| return function() { | |
| var result = getResult(); | |
| getResult = function() { return result; } | |
| return result; |
NewerOlder