import { IniMap } from "https://deno.land/std@0.211.0/ini/mod.ts";
Class implementation for fine control of INI data structures.
Constructors
Properties
Manage comments in the INI.
Methods
Clear a single section or the entire INI.
Delete a global key in the INI.
Delete a section key in the INI.
Iterate over each entry in the INI to retrieve key, value, and section.
Get a value from a global key in the INI.
Get a value from a section key in the INI.
Check if a global key exists in the INI.
Check if a section key exists in the INI.
Parse an INI string in this IniMap
.
Set the value of a global key in the INI.
Set the value of a section key in the INI.
Convenience method for JSON.stringify
.
Convert this IniMap
to a plain object.
Convert this IniMap
to an INI string.
Static Methods
Create an IniMap
from an INI string.
Create an IniMap
from a plain object.