Skip to content

Commit

Permalink
[fix] have latter stores precede the former stores.
Browse files Browse the repository at this point in the history
  • Loading branch information
chjj committed Feb 11, 2014
1 parent 05d73de commit 0bb89ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/nconf/provider.js
Expand Up @@ -222,7 +222,7 @@ Provider.prototype.get = function (key, callback) {
// the entire set of stores, but up until there is a defined value.
//
var current = 0,
names = Object.keys(this.stores),
names = Object.keys(this.stores).reverse(),
self = this,
response,
mergeObjs = [];
Expand Down

0 comments on commit 0bb89ee

Please sign in to comment.