L-Mario564 / drizzle-dbml-generator

Generate DBML markup from your schema defined with Drizzle ORM.
MIT License
161 stars 8 forks source link

Escape non-space characters #10

Closed kevinschaich closed 11 months ago

kevinschaich commented 11 months ago

Non-word characters other than just spaces also cause issues for me in enum values – e.g. 12/28. If you wrap it – "12/28" – it works fine.

Some other examples:

/\W/.test('asdf')
false
/\W/.test('asdf/')
true
/\W/.test('asdf:')
true
/\W/.test('asdf ')
true