mirror of
https://github.com/cypress-io/cypress.git
synced 2025-12-21 14:21:13 -06:00
* convert file_server to TypeScript * chore: convert random to TypeScript * convert a handful of files to TypeScript
8 lines
192 B
TypeScript
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]
|
|
}
|