Skip to main content
Module

x/frugal/doc/dep/std/dotenv.ts>stringify

A frugal web framework
Latest
function stringify
import { stringify } from "https://deno.land/x/frugal@0.9.6/doc/dep/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