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
When we use ? and ?? operators for check null or undefined in js file this extension not rebuild .min.js file and give us error problem.
?
??
// 1) var myVal = $('#myInput').val() ?? 0; // .min.js file not rebuild // 2) var myData = { id: 1, name: 'myName' } ; var name = myData?.name // .min.js file not rebuild
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Installed product versions
Description
When we use
?
and??
operators for check null or undefined in js file this extension not rebuild .min.js file and give us error problem.Example
The text was updated successfully, but these errors were encountered: