Skip to content

Instantly share code, notes, and snippets.

@nedgrady
Created February 11, 2023 13:34
Show Gist options
  • Save nedgrady/ae2a75af113394a020f6edc99dd85357 to your computer and use it in GitHub Desktop.
Save nedgrady/ae2a75af113394a020f6edc99dd85357 to your computer and use it in GitHub Desktop.
const options = []
for (let i = 0; i < 3000; i++) {
// add a random string to the array
options.push('"' + Math.random().toString(36).slice(2, 7) + '"')
}
const parser = buildParser(`
@top Program { Field ">=30" }
Field { ${options.join("|")} }
`)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment