@cassolette/luahelpparser
v1.0.1
Published
Parser for LuaHelp, an API documentation for the Lua tree from Transformice.
Downloads
2
Readme
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));