import { mod } from "https://deno.land/x/ponder@v0.1.0/deps.ts";
const { stringify } = mod;
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