gitextract_4x3sjx89/ ├── .editorconfig ├── .github/ │ └── workflows/ │ ├── build.yaml │ └── publish.yaml ├── .gitignore ├── LICENSE ├── README.md ├── bench/ │ ├── parseLargeMixed.bench.ts │ ├── parseSpecExample.bench.ts │ ├── stringifyLargeMixed.bench.ts │ ├── stringifySpecExample.bench.ts │ └── testfiles/ │ ├── 5mb-mixed.toml │ └── toml-spec-example.toml ├── package.json ├── pnpm-workspace.yaml ├── run-toml-test.bash ├── src/ │ ├── date.ts │ ├── error.ts │ ├── extract.ts │ ├── index.ts │ ├── parse.ts │ ├── primitive.ts │ ├── stringify.ts │ ├── struct.ts │ └── util.ts ├── test/ │ ├── array.test.ts │ ├── date.test.ts │ ├── dos.test.ts │ ├── error.test.ts │ ├── extract.test.ts │ ├── inlineTable.test.ts │ ├── key.test.ts │ ├── package/ │ │ ├── .gitignore │ │ ├── package-test.mjs │ │ └── package.json │ ├── parse.test.ts │ ├── string.test.ts │ ├── stringify.test.ts │ ├── util.test.ts │ └── value.test.ts ├── toml-test-encode.mjs ├── toml-test-parse.mjs └── tsconfig.json