wow-toc-parser/README.md
2023-04-10 21:27:01 +02:00

818 B

wow-toc-parser

World Of Warcraft addon .toc file parser. Written in typescript.

Ressources

This implementation is based on based on wow-toc by Zoey Mertes.

Furthermore the following documentation was used to create this tool:

Usage

// TODO publish $ npm install wow-toc

import { open } from 'fs/promises';
import { parse } from 'wow-toc-parser'

const file = await open(__dirname + '/../test/empty.toc', 'r');
const toc = await parse(file)

console.log(toc)

Notes / Caveats

  • Does not acknowledge #@no-lib-strip@/#@end-no-lib-strip@

License

// TODO Apache MIT. See LICENSE