*Pass fallback to objectPath.get

This commit is contained in:
Derrick Hammer 2022-12-19 13:48:12 -05:00
parent f69a12fb52
commit 785e0b836c
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ export default class Config {
key = this.normalize(key);
return objectPath.get(this.data, key);
return objectPath.get(this.data, key, fallback);
}
public typeOf(key: string) {