TomFrost / Jexl

Javascript Expression Language: Powerful context-based expression parser and evaluator
MIT License
563 stars 92 forks source link

Bug when escaping multiple '\\' in string #95

Open ywtdzh opened 3 years ago

ywtdzh commented 3 years ago
jexl.compile('"\\\\ab\\\\c"')._ast.value; // result is '\ab\\c' rather than '\ab\c'

See pull requests #94