Skip to main content
Module

std/ini/stringify.ts

Deno standard library
Go to Latest
File
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { IniMap, type StringifyOptions } from "./ini_map.ts";
/** Compile an object into an INI config string. Provide formatting options to modify the output. */export function stringify( // deno-lint-ignore no-explicit-any object: any, options?: StringifyOptions,): string { return IniMap.from(object, options).toString(options?.replacer);}