# kvify

> Parse .ini format config files and JSON files with a single function

Latest version **1.0.0** (published 2018-12-06) · BSD-3-Clause license · 0 weekly downloads

## Install

```sh
npm install kvify
pnpm add kvify
yarn add kvify
bun add kvify
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2018-12-06 |
| First published | 2018-12-06 |
| Weekly downloads | 0 |
| License | BSD-3-Clause |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 1.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Colten Jackson |
| Maintainers | jazzyjackson |

## Links

- npm: https://www.npmjs.com/package/kvify
- Repository: https://github.com/jazzyjackson/kvify
- npm.io page: https://npm.io/package/kvify

## Recent versions

- 1.0.0 (latest) — 2018-12-06

## README

# kvify
Parse .ini format config files and JSON files with a single function

Given the contents of a file as a string, returns an object, whether that string was:
```json
{
  "something":"cool"
}
```
returns what you would expect or...

```ini
something=oldschool
# with comments
and interestesting puntuation = !
# returns {something: "oldschool", "and interesting punctuation": "!" }
```
which you might not expect.

---
_Source: https://npm.io/package/kvify · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
