deno.land / std@0.224.0 / ini / stringify.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
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);}
std

Version Info

Tagged at
3 weeks ago