Nothing
#' is.ASCII
#'
#' Checks if \code{txt} contains only ASCII characters.
#'
#' @param txt character: text to check
#'
#' @return logical
#' @export
#'
#' @examples
#' is.ASCII("Congratulations")
#' is.ASCII("Herzlichen Glückwunsch")
is.ASCII <- function (txt) { all(charToRaw(txt) <= as.raw(127)) }
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.