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 argument.js, isFloat() returns true for the following string "865fe326-2d1c-44a6-8719-d3c108fd649f"
argument.js
isFloat()
"865fe326-2d1c-44a6-8719-d3c108fd649f"
The text was updated successfully, but these errors were encountered:
I think the solution would be to check for
// Handle ids that are not numbers but pass parseFloat test // (ie. Titan edge ids) if (_.isString(argument) && this.isFloat()) { return "'" + argument + "'"; }
before
if (this.isFloat()) { return this.value; }
Sorry, something went wrong.
No branches or pull requests
In
argument.js
,isFloat()
returns true for the following string"865fe326-2d1c-44a6-8719-d3c108fd649f"
The text was updated successfully, but these errors were encountered: