import { dotenv } from "https://deno.land/x/hex@0.6.5/src/lib/options/deps.ts";
const { stringify } = dotenv;
Examples
Example 1
Example 1
import { stringify } from "https://deno.land/std@0.224.0/dotenv/mod.ts";
const object = { GREETING: "hello world" };
const string = stringify(object); // GREETING='hello world'
Parameters
object: DotenvConfig
object to be stringified