Return this from customize for chaining.

This commit is contained in:
Chris Tavares 2014-05-22 21:42:19 -07:00
Родитель bc3795da74
Коммит 47b5698218
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -57,7 +57,7 @@ function Config(parent, defaultEnvVar, initialCustomizer) {
};
config.customize = function (newCustomizer) {
newCustomizer(config);
newCustomizer(this);
if (!customizer) {
customizer = newCustomizer;
} else {
@ -72,6 +72,8 @@ function Config(parent, defaultEnvVar, initialCustomizer) {
Object.keys(environments).forEach(function (envName) {
environments[envName].customize(newCustomizer);
});
return this;
};
config.set = function (setting, value) {