Nothing
#' Sleeps for the given number of seconds.
#'
#' This function wraps the base Sys.sleep() function to make it mockable and
#' reachable inside unit tests.
#'
#' @param seconds `integer`. The maximum number of seconds to wait.
#'
#' @importFrom checkmate assert_int
#'
#' @keywords internal
#' @noRd
#'
.sleep <- function(seconds) {
assert_int(seconds)
Sys.sleep(seconds)
}
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.