Nothing
generateEllipsisSubstitutionName <- function(argumentNames_s) {
el <- getEllipsisSubstitutionName()
verifyNoMatch <- function(elvalue_s_1) {
b <- sapply(argumentNames_s, startsWith, elvalue_s_1)
all(!b)
}
if (verifyNoMatch(el)) return(el)
while (TRUE) {
el <- paste0(el, sample(LETTERS, 1))
if (verifyNoMatch(el)) return(el)
}
}
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.