Skip to content

Commit

Permalink
Forgot to bind() version function
Browse files Browse the repository at this point in the history
  • Loading branch information
Mitchell Hentges committed Feb 29, 2016
1 parent 5209a62 commit c59c7ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/darwin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var util = require('./util');
function browser(id, versionKey) {
return {
path: util.find.bind(null, id),
version: util.getInfoKey(null, id, versionKey)
version: util.getInfoKey.bind(null, id, versionKey)
};
}

Expand Down

0 comments on commit c59c7ea

Please sign in to comment.