emo icon indicating copy to clipboard operation
emo copied to clipboard

Extracting Multiple Emojis

Open soroosj opened this issue 6 years ago β€’ 1 comments

Is there a function to extract more than one emoji at a time?

For example, ji('Germany') and ji ('Sweden') separately return the flags. However, ji(c('Germany','Sweden')) returns an error message "Error in find_emoji(keyword) : length(keyword) == 1 is not TRUE"

I see a function jis that looks potentially promising from the description but function does not seem to exist: Error in jis("Germany", "Sweden") : could not find function "jis"

soroosj avatar Jun 06 '19 01:06 soroosj

purrr::map_chr(c("France", "Sweden"), emo::flag)
[1] "πŸ‡«πŸ‡·" "πŸ‡ΈπŸ‡ͺ"

matiasandina avatar Dec 01 '21 17:12 matiasandina