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
dedent`foo\n bar`
is not the same as
dedent`foo bar`
But both produces "foo\nbar"
"foo\nbar"
dedent`foo\n bar` should be "foo\n bar"
The text was updated successfully, but these errors were encountered:
This is in line with the test suite and readme. IIRC it wasn't possible to detect the difference. You can write it like this though:
dedent` foo bar `
Sorry, something went wrong.
it's possible to detect via raw value of template strings
raw
No branches or pull requests
is not the same as
But both produces
"foo\nbar"
The text was updated successfully, but these errors were encountered: