Skip to main content
Module

x/ponder/deps.ts>mod.stringify

Simple ORM for PostGRES
Go to Latest
function mod.stringify
import { mod } from "https://deno.land/x/ponder@v0.0.4.0/deps.ts";
const { stringify } = mod;

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