Return this from customize for chaining.
This commit is contained in:
Родитель
bc3795da74
Коммит
47b5698218
|
@ -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) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче