*Update dist

This commit is contained in:
Derrick Hammer 2022-09-21 16:56:02 -04:00
parent 8b49a6ed6b
commit 1c3eeb3004
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 11 additions and 11 deletions

22
dist/index.js vendored
View File

@ -173,19 +173,19 @@ class Config {
(0, bsert_1.default)(typeof key === "string", "Key must be a string."); (0, bsert_1.default)(typeof key === "string", "Key must be a string.");
key = key.replace(/-/g, ""); key = key.replace(/-/g, "");
key = key.toLowerCase(); key = key.toLowerCase();
if (this.hash[key] !== null) { if (key in this.hash && this.hash[key] !== null) {
return true; return true;
} }
if (this.query[key] !== null) { if (key in this.query && this.query[key] !== null) {
return true; return true;
} }
if (this.args[key] !== null) { if (key in this.args && this.args[key] !== null) {
return true; return true;
} }
if (this.env[key] !== null) { if (key in this.env && this.env[key] !== null) {
return true; return true;
} }
if (this.data[key] !== null) { if (key in this.data && this.data[key] !== null) {
return true; return true;
} }
return this.options[key] !== null; return this.options[key] !== null;
@ -214,22 +214,22 @@ class Config {
(0, bsert_1.default)(typeof key === "string", "Key must be a string."); (0, bsert_1.default)(typeof key === "string", "Key must be a string.");
key = key.replace(/-/g, ""); key = key.replace(/-/g, "");
key = key.toLowerCase(); key = key.toLowerCase();
if (this.hash[key] !== null) { if (key in this.hash && this.hash[key] !== null) {
return this.hash[key]; return this.hash[key];
} }
if (this.query[key] !== null) { if (key in this.query && this.query[key] !== null) {
return this.query[key]; return this.query[key];
} }
if (this.args[key] !== null) { if (key in this.args && this.args[key] !== null) {
return this.args[key]; return this.args[key];
} }
if (this.env[key] !== null) { if (key in this.env && this.env[key] !== null) {
return this.env[key]; return this.env[key];
} }
if (this.data[key] !== null) { if (key in this.data && this.data[key] !== null) {
return this.data[key]; return this.data[key];
} }
if (this.options[key] !== null) { if (key in this.options && this.options[key] !== null) {
return this.options[key]; return this.options[key];
} }
return fallback; return fallback;