Skip to content
New issue

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

parse nested endpoint structure in root config #265

Merged
merged 1 commit into from
Sep 29, 2023
Merged

Conversation

fauna-chase
Copy link
Contributor

ENG-5544

@fauna-chase fauna-chase requested a review from macmv September 28, 2023 23:00
Comment on lines +65 to +67
return endpointObj.keys().some((key) => {
return endpointObj.objectExists(key);
});
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

style (you can avoid the second return if you don't make a block):

Suggested change
return endpointObj.keys().some((key) => {
return endpointObj.objectExists(key);
});
return endpointObj.keys().some((key) => endpointObj.objectExists(key));

@fauna-chase fauna-chase merged commit b97a5bd into main Sep 29, 2023
1 check passed
@fauna-chase fauna-chase deleted the nested-endpoints branch September 29, 2023 19:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants