You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I'd want to make use of jsep as a simple expression parser for one of my libraries. However, jsep by default includes support for all javascript operators (like === ) which I don't plan to support. Could you please add a quick way to get a vanilla parser from jsep? (something like a reset method)
The text was updated successfully, but these errors were encountered:
This would be great. So instead of having a full set of JS operators active by default, there could be a builder/use pattern to prep up the jsep parser from. Something like - jsep.use(binaryOps(['||', '&&', ...]))
Hi! I'd want to make use of jsep as a simple expression parser for one of my libraries. However, jsep by default includes support for all javascript operators (like
===
) which I don't plan to support. Could you please add a quick way to get a vanilla parser from jsep? (something like areset
method)The text was updated successfully, but these errors were encountered: