Nothing
#' Token
#'
#' Create a token
#'
#' @param n Number of bytes.
#' @examples
#' token_create()
#' token_create(n = 32L)
#' @return Length 1 character vector.
#' @export
token_create <- function(n = 16L) {
paste(
as.hexmode(
sample(
256,
n,
replace = TRUE
)
),
collapse = ""
)
}
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.