UNPKG

@desertnet/html-parser

Version:

HTML parser and non-strict validator

13 lines (11 loc) 223 B
/** * Possible instructions used in a Op, and * by the parser's executeCode method. * @enum {string} */ const Instr = { PUSH_NODE: "PUSH_NODE", POP_NODE: "POP_NODE", ADD_TOKEN: "ADD_TOKEN" } export default Instr