Nothing
#' Local time to GMT
#'
#' The function transforms a \code{POSIXct} object in any given time zone to GMT.
#'
#' @param time Time, a \code{POSIXct} object.
#' @return A a \code{POSIXct} object, in GMT.
#'
#' @examples
#' time = as.POSIXct("1999-01-01 12:00:00", tz = "Asia/Jerusalem")
#' toGMT(time)
#'
#' @export
toGMT = function(time) {
as.POSIXct(format.POSIXct(time, tz = "GMT"), tz = "GMT")
}
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.