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
We aren't consistent in naming our locals or parameters with respect to their casing. Node.js, apparently, prefers snake_casing for these.
if (staticPropertyCount > 0) { std::vector<napi_property_descriptor> staticDescriptors; staticDescriptors.reserve(staticPropertyCount);
Should become
if (static_property_count > 0) { std::vector<napi_property_descriptor> static_descriptors; static_descriptors.reserve(static_property_count);
The text was updated successfully, but these errors were encountered:
Fixed by #193
Sorry, something went wrong.
boingoing
No branches or pull requests
We aren't consistent in naming our locals or parameters with respect to their casing. Node.js, apparently, prefers snake_casing for these.
Should become
The text was updated successfully, but these errors were encountered: