function stringifyimport { stringify } from "https://dotland.deno.dev/std@0.181.0/dotenv/mod.ts"; stringify(object: Record<string, string>)ExamplesExample 1 import { stringify } from "https://deno.land/std@0.181.0/dotenv/mod.ts"; const object = { GREETING: "hello world" }; const string = stringify(object); // GREETING='hello world' Parametersobject: Record<string, string>object to be stringified