ini library

This library deals with reading and writing ini files.

This implements the INI standard, defined here.

The ini file reader will return data organized by section and option. The default section will be the blank string.

new File("config.ini").readAsLines()
  .then((lines) => new Config.fromStrings(lines))
  .then((Config config) => ...);

Classes

Config