JuanCouste / overpass-ql-ts

Overpass QL query builder abstraction with typing
MIT License
5 stars 1 forks source link

String sanitization #13

Closed JuanCouste closed 5 months ago

JuanCouste commented 6 months ago

Added optional naive string sanitization, it escapes free quotes, and handles escaping at the end of a string. ie: "\"Test\"" => "\\"Test\\"" ie: "Test\" => "Test\" It works together with CompileUtils.qString.

Updated deprecations to match new functionality, around selecting the use sanitization.

Refactored some files with unfortunate names.