TomFrost / Jexl

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

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

Open ywtdzh opened 4 years ago

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

See pull requests #94