feat: bru hasEnvVar, hasVar, deleteVar (#2531)

Co-authored-by: Anoop M D <anoop.md1421@gmail.com>
This commit is contained in:
lohit
2024-07-04 13:21:27 +05:30
committed by GitHub
parent 2aa7d26a89
commit c8f95a34e9
2 changed files with 15 additions and 0 deletions

View File

@ -43,6 +43,10 @@ class Bru {
return this.processEnvVars[key];
}
hasEnvVar(key) {
return Object.hasOwn(this.envVariables, key);
}
getEnvVar(key) {
return this._interpolate(this.envVariables[key]);
}
@ -55,6 +59,10 @@ class Bru {
this.envVariables[key] = value;
}
hasVar(key) {
return Object.hasOwn(this.collectionVariables, key);
}
setVar(key, value) {
if (!key) {
throw new Error('Creating a variable without specifying a name is not allowed.');
@ -81,6 +89,10 @@ class Bru {
return this._interpolate(this.collectionVariables[key]);
}
deleteVar(key) {
delete this.collectionVariables[key];
}
getRequestVar(key) {
return this._interpolate(this.requestVariables[key]);
}