Skip to content

Instantly share code, notes, and snippets.

@othiym23
Forked from medikoo/promised.js
Last active December 12, 2015 07:38
Show Gist options
  • Save othiym23/4738193 to your computer and use it in GitHub Desktop.
Save othiym23/4738193 to your computer and use it in GitHub Desktop.
MultiInstaller.prototype.forEach = function (visitor, callback) {
var qVisitor = Q.nfbind(visitor, null)
, qInstall = Q.nfbind(install)
;
var target = this.target;
var prefix = this.prefix;
function process(versions, index, result) {
if (!versions[index]) return result;
return qInstall(target, versions[index], prefix)
.then(function (result) { return qVisitor(result); })
.then(process.bind(null, versions, ++index));
}
function installAll(versions) {
console.log('installing all versions');
return process(versions.reverse(), 0, null);
}
return this.versions().then(installAll).nodeify(callback);
};
@medikoo
Copy link

medikoo commented Feb 8, 2013

In version I've done initially I'm not sure why I didn't use reduce right from beginning, with that, it goes down to three lines of code: https://gist.github.com/medikoo/4737974

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment