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
Connector.prototype.isRelational
Call new Connector(/*...*/).isRelational()
new Connector(/*...*/).isRelational()
Offending line:
loopback-connector/lib/connector.js
Lines 36 to 37 in e857973
It returns itself (a function), which then requires a 2nd call to get the expected boolean value.
Connector.prototype.isRelational should strictly return a boolean.
N/A
See Reporting Issues for more tips on writing good issues
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to reproduce
Call
new Connector(/*...*/).isRelational()
Offending line:
loopback-connector/lib/connector.js
Lines 36 to 37 in e857973
Current Behavior
It returns itself (a function), which then requires a 2nd call to get the expected boolean value.
Expected Behavior
Connector.prototype.isRelational
should strictly return a boolean.Link to reproduction sandbox
N/A
Additional information
Related Issues
See Reporting Issues for more tips on writing good issues
The text was updated successfully, but these errors were encountered: