Nothing
#' Wrap
#'
#' @inheritParams params
#'
#' @export
#' @examples
#' dtt_wrap(hms::as_hms("24:00:00"))
dtt_wrap <- function(x, ...) {
UseMethod("dtt_wrap")
}
#' @export
dtt_wrap.hms <- function(x, ...) {
chk_unused(...)
dtt_time(as.POSIXlt(x))
}
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.