import { stringify } from "https://deno.land/std@0.184.0/dotenv/mod.ts";
Examples
Example 1
Example 1
import { stringify } from "https://deno.land/std@0.184.0/dotenv/mod.ts";
const object = { GREETING: "hello world" };
const string = stringify(object); // GREETING='hello world'