We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
const sql = require('@sequencework/sql') console.log(sql` 0 ${sql.raw(` 1 ${sql.raw('2')} `)} `.text)
Output :
\n 0 \n 1 [object Object]\n \n
Expected :
\n 0 \n 1 2\n \n
Actually, it's not really a bug, it's more a discussion.
The text was updated successfully, but these errors were encountered:
Actually, what I wanted to do should just be done with the normal sql tag 😄 :
sql
const sql = require('@sequencework/sql') console.log(sql` 0 ${sql` 1 ${sql`2`} `} `.text)
Sorry, something went wrong.
No branches or pull requests
Output :
Expected :
Actually, it's not really a bug, it's more a discussion.
The text was updated successfully, but these errors were encountered: