R/helpers.R
create_id.Rd
Creates a random identifier from a-zA-Z. This function is used internally to generate unique identifiers for HTML elements.
create_id(n = 10, prefix = "")
Length of the id (default: 10)
Optional prefix to add to the random ID
A random id string
if (FALSE) { # \dontrun{ create_id() create_id(15) create_id(8, prefix = "app_") } # }