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
FYI, instead of
bigKRLS/R/utils.R
Line 25 in c7e0178
you can use:
package_version(RStudio.Version()$version) >= threshold
If my RStudio 1.2.1335, it would be enough to do:
RStudio.Version()$version >= threshold
because that 'version' field is already a package_version object, but maybe that's not the case for the older version of RStudio that you wanna test.
package_version
The text was updated successfully, but these errors were encountered:
No branches or pull requests
FYI, instead of
bigKRLS/R/utils.R
Line 25 in c7e0178
you can use:
If my RStudio 1.2.1335, it would be enough to do:
because that 'version' field is already a
package_version
object, but maybe that's not the case for the older version of RStudio that you wanna test.The text was updated successfully, but these errors were encountered: