-
Notifications
You must be signed in to change notification settings - Fork 25
Parameters support #26
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #26 +/- ##
=======================================
Coverage 90.09% 90.09%
=======================================
Files 6 6
Lines 101 101
Branches 6 6
=======================================
Hits 91 91
Misses 10 10Continue to review full report at Codecov.
|
|
@DvirDukhan please add negative tests too |
src/graph.js
Outdated
| for(var i = 0; i < paramValue.length; i++) { | ||
| stringsArr[i] = this.paramToString(paramValue[i]); | ||
| } | ||
| return "[" + stringsArr.join(", ") + "]"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not avoid this + also
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@DvirDukhan sorry my mistake I didn't notice the "," in the join I think your original code is better.
|
Would it be possible to document this in the README? |
No description provided.