Created
March 7, 2025 19:01
-
-
Save jmbarbone/6c23cd35a6d7bc3c891e3b6e3a6dcef2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkg_version <- function(package, keep = c("all", "patch", "minor", "major")) { | |
keep <- match.arg(keep) | |
version <- utils::packageVersion(package) | |
version <- unclass(version)[[1L]] | |
version <- switch( | |
keep, | |
all = version, | |
patch = version[1:3], | |
minor = version[1:2], | |
major = version[1L] | |
) | |
paste(version, collapse = ".") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment