function parseView codeparse(rawDotenv: string): Record<string, string>Parse .env file output in an object. ExamplesExample 1 import { parse } from "@std/dotenv/parse"; const env = parse("GREETING=hello world"); env.GREETING; // "hello world" ParametersrawDotenv: stringView codeReturn TypeRecord<string, string>View code