Skip to content

Instantly share code, notes, and snippets.

@voltrevo
Created February 16, 2016 07:15
Show Gist options
  • Save voltrevo/3c310cd6fbbed23cf78b to your computer and use it in GitHub Desktop.
Save voltrevo/3c310cd6fbbed23cf78b to your computer and use it in GitHub Desktop.
'use strict';
module.exports = function(loop) {
return (function cycle(result) {
return result || loop().then(cycle);
})();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment