Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
Update JSDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoalh committed Mar 19, 2024
1 parent 07a0a0c commit 4e93e55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export function getEnv(key: string): string | undefined {
return process.env[key];
}
/**
* Check whether an environment variable is present or not.
* Check whether an environment variable is present.
* @param {string} key
* @returns {boolean}
*/
Expand All @@ -49,7 +49,7 @@ export function hasEnv(key: string): boolean {
return (typeof process.env[key] !== "undefined");
}
/**
* Set the value of an environment variable.
* Set an environment variable.
* @param {string} key
* @param {string} value
* @returns {void}
Expand Down

0 comments on commit 4e93e55

Please sign in to comment.