UNPKG

yini-parser

Version:

Readable configuration without YAML foot-guns or JSON noise. The official Node.js parser for YINI config format — An INI-inspired configuration format with clear nesting, explicit types, and predictable parsing.

12 lines (11 loc) 371 B
/** * @property {string | undefined} [tag] * This parameter is for debugging only. Its * contents may change at any time and should not * be relied upon for any significant purpose. */ declare const parseNumberLiteral: (txt: string) => { tag: string | undefined; value: number | undefined; }; export default parseNumberLiteral;