UNPKG

grammars

Version:

Library to help you build your own type-safe parsers for any language.

11 lines (10 loc) 119 B
// src/index.ts var Grammar = class { text; constructor(text) { this.text = text; } }; export { Grammar };