1.0.1 • Published 1 year ago

@cassolette/luahelpparser v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

luahelpparser

Parser for LuaHelp, an API documentation for the Lua tree from Transformice. Produces an abstract syntax tree (AST)-like object representing the LuaHelp output.

Example usage

import { promises as fsp } from "fs";
import { parse } from "@cassolette/luahelpparser";

const luaHelpAst = parse(
    (await fsp.readFile("./luahelp.txt")).toString()
);

console.log(JSON.stringify(luaHelpAst, null, 2));