#' Token
#'
#' Create a token
#'
#' @param n Number of bytes.
#'
#' @export
token_create <- function(n = 16L) {
paste(
as.hexmode(
sample(
256,
n,
replace = TRUE
)
),
collapse = ""
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.