Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/hex/src/lib/options/deps.ts>dotenv.stringify

An ecosystem delivering practices, philosophy and portability. Powered By Deno and JavaScript.
Latest
function dotenv.stringify
import { dotenv } from "https://deno.land/x/hex@0.6.5/src/lib/options/deps.ts";
const { stringify } = dotenv;

Examples

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