Source Engine KeyValue file parser and tokenizer library
npm install @sourcelib/kvbash
npm install @sourcelib/kv
`
Usage
`typescript
import { tokenize, parse } from '@sourcelib/kv';
const tokens = tokenize(
);
const kvTree = parse(tokens);
kvTree.getChildren()[0].getValues()[0].getValue(); // "value"
``