Ini
Parses INI configuration files.
This module contains the decoding surface used by Effect's CLI without
pulling in the complete ini package.
Decoding
Parses an INI document into a null-prototype record.
Section names separated by dots become nested records, repeated keys ending
in [] become arrays, and the scalar values true, false, and null are
decoded. Other scalar values remain strings.
Signature
declare function parse(input: string): Record<string, unknown>