We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0bf9f1 commit d989494Copy full SHA for d989494
package/src/ConfigurationProvider.ts
@@ -29,6 +29,16 @@ export class ConfigurationProvider<T> {
29
}
30
31
32
+
33
+ /**
34
+ * Add a default object that will only add params that aren't already specified
35
+ * @param obj
36
+ */
37
+ public addDefaultObject(obj: any) {
38
+ if (obj) {
39
+ this.mergedConfiguration = <T>merge(obj, this.mergedConfiguration);
40
+ }
41
42
43
44
export function loadConfigurationJSON(callback) {
0 commit comments