Std.Dotenv.parse
1 declaration
fn
parse: Str -> Result[Array[Std.Dotenv.Entry], Std.Dotenv.DotenvError]Parses KEY=value lines.
Blank lines and lines starting with # are skipped, and a leading export is ignored. An unquoted value is trimmed and ends at #. A single-quoted value is literal. A double-quoted value may span lines, reads the escapes \n, \r, \t, \", \\, \$, and expands ${NAME} from keys assigned earlier in the same text; unquoted values expand the same way. An unknown ${NAME} expands to nothing.
