Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 383 Bytes

env.md

File metadata and controls

14 lines (11 loc) · 383 Bytes

env (object)

An object representing the process's environment variables. You can read from it to read environment variables, write into it to set environment variables, and/or delete properties from it to unset environment variables. Any value you write will be coerced into a string.

const env: {
  [key: string]: string | undefined;
};