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
is_mac()
We have this bit of code scattered across the package, and could make it more succinct with a function like
is_mac <- function(){ grepl("mac", osVersion) }
returns a logical, TRUE or FALSE.
Or this may be overkill for a 23 character function. 🤷
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We have this bit of code scattered across the package, and could make it more succinct with a function like
returns a logical, TRUE or FALSE.
Or this may be overkill for a 23 character function. 🤷
The text was updated successfully, but these errors were encountered: