// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // This module is browser compatible. import { IniMap, type ParseOptions } from "./ini_map.ts"; /** Parse an INI config string into an object. Provide formatting options to override the default assignment operator. */ export function parse( text: string, options?: ParseOptions, ): Record> { return IniMap.from(text, options).toObject(); }