Skip to main content
Module

x/enzastdlib/vendor/@deno-std-dotenv.ts>stringify

enzastdlib is a set of TypeScript modules that follow a common design API philosophy aiming at sane defaults and ease-of-use targeting the Deno TypeScript runtime.
Latest
function stringify
import { stringify } from "https://deno.land/x/enzastdlib@v0.0.4/vendor/@deno-std-dotenv.ts";

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: Record<string, string>

object to be stringified