Files
cypress/packages/server/lib/util/env.ts
Bill Glesias f7e684174c chore: refactor server files to TypeScript (#32838)
* convert file_server to TypeScript

* chore: convert random to TypeScript

* convert a handful of files to TypeScript
2025-10-31 12:39:02 -04:00

8 lines
192 B
TypeScript

export const set = (key: string, val: string): string | undefined => {
return process.env[key] = val
}
export const get = (key: string): string | undefined => {
return process.env[key]
}