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
In some very specific cases which I was unable to pinpoint exactly, variable names are not encoded correctly in the target bundle. Example:
test.html:
<script src="test.js"></script>
test.js
function ( nl ) { var nl = 1; }
Result of inline test.html:
inline test.html
<script>function (~~s s~~) { var~~s s~~= 1; }</script>
The sequence of characters " nl " (spaces included) is converted to "~~s\ns~~" which is not a valid syntax.
" nl "
"~~s\ns~~"
The text was updated successfully, but these errors were encountered:
Same problem here, error found on Moment config file for Netherlands which include that exact var nl.
var nl
Sorry, something went wrong.
No branches or pull requests
In some very specific cases which I was unable to pinpoint exactly, variable names are not encoded correctly in the target bundle. Example:
test.html:
test.js
Result of
inline test.html
:The sequence of characters
" nl "
(spaces included) is converted to"~~s\ns~~"
which is not a valid syntax.The text was updated successfully, but these errors were encountered: