FunctionsenvVersion: v4.23On this pageenvReads an environment variable.env(x:string) -> stringDescriptionThe env function retrieves the value of an environment variable x. If the variable does not exist, it returns null.ExamplesRead the PATH environment variablefrom {x: env("PATH")}{x: "/usr/local/bin:/usr/bin:/bin"}