function stringify
stringify(object: Record<string, string>): stringStringify an object into a valid .env file format.
Examples
Example 1
Example 1
import { stringify } from "@std/dotenv/stringify"; const object = { GREETING: "hello world" }; const string = stringify(object); // GREETING='hello world'
Parameters
Return Type
string of object