Nothing
#' Find out if the whoami package binaries is installed (git + whoami)
#' @return logical that is TRUE if whoami and git can be found
#' @export
whoami_available <- function() {
## check if pandoc can be found on the path
whoami_bin <- as.character(Sys.which('whoami'))
git_bin <- as.character(Sys.which('git'))
## return whatever found
(whoami_bin != '') & (git_bin != '')
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.