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 https://github.com/teknologi-umum/flourite/blob/master/src/languages/javascript.ts#L19 :
function\*?(\s+[$\w]+\s*\(.*\)|\s*\(.*\))
This regex can match:
They should not match because function name can't start with a digit.
The text was updated successfully, but these errors were encountered:
Merge pull request #63 from farhan443/fix/javascript-function
cae375d
fix #62: minimize incorrect matches for javascript function
Successfully merging a pull request may close this issue.
In https://github.com/teknologi-umum/flourite/blob/master/src/languages/javascript.ts#L19 :
function\*?(\s+[$\w]+\s*\(.*\)|\s*\(.*\))
This regex can match:
They should not match because function name can't start with a digit.
The text was updated successfully, but these errors were encountered: