narrowtux / abacus

Parses and evaluates mathematical expressions in Elixir. Inspired by math.js
MIT License
84 stars 18 forks source link

Escaping " at the end of a string yields \ #23

Open narrowtux opened 2 years ago

narrowtux commented 2 years ago
AbacusSql.Term.parse ~s["\\""]  == {:ok, "\\"}

should be

{:ok, "\""}