Nothing
#' Emoji for Git Commit message with emoji
#'
#' Get emoji(s) for Git commit messages by name.
#'
#' @param name A character vector of emoji names (e.g., \code{"fire"}, \code{"heart"}, or country names).
#'
#' @return A named character vector of emojis.
#' @export
#'
#' @examples
#' git_emoji("fire")
#' git_emoji(c("fire", "heart"))
#' try(git_emoji(c("Ethiopia", "UK", "Kenya")))
git_emoji <- function(name) {
missing <- setdiff(name, names(emoji_dict))
if (length(missing) > 0) {
stop("Emoji name(s) not found: ", paste(missing, collapse = ", "))
}
return(emoji_dict[name])
}
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.