import { IniMap } from "https://dotland.deno.dev/std@0.224.0/ini/mod.ts";
Class implementation for fine control of INI data structures.
Constructors
new
IniMap(formatting?: FormattingOptions)Methods
entries(): Generator<[string, unknown, string | undefined]>
Iterate over each entry in the INI to retrieve key, value, and section.
Static Methods
from(input: string, options?: ParseOptions & FormattingOptions): IniMap
Create an IniMap
from an INI string.
from(input: Record<string, any>, formatting?: FormattingOptions): IniMap
Create an IniMap
from a plain object.