Nothing
#' Repeat and join a string
#'
#' @param x [character]\cr
#' Vector of characters.
#' @param n [\code{integer(1)}]\cr
#' Times the vector \code{x} is repeated.
#' @param sep [\code{character(1)}]\cr
#' Separator to use to collapse the vector of characters.
#' @return \code{character(1)}.
#' @export
#' @examples
#' strrepeat("x", 3)
strrepeat = function(x, n, sep = "") {
paste0(rep.int(x, n), collapse = sep)
}
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.