Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

std/ini/parse.ts>parse

Deno standard library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function parse
import { parse } from "https://deno.land/std@0.218.2/ini/parse.ts";

Parse an INI config string into an object. Provide formatting options to override the default assignment operator.

Parameters

text: string
optional
options: ParseOptions

Returns

Record<string, unknown | Record<string, unknown>>