Nothing
      "gvlma" <-
function(x, data, alphalevel = 0.05, timeseq, ...)
  {
    mc <- match.call()
    extras <- match.call(expand.dots = FALSE)$...
    
    if (class(x) == "formula")
      {
        if (missing(timeseq)) timeseq = 1:nrow(data)
        calllist <- call(name = "gvlma.form",
                         formula = x,
                         data = as.name(deparse(substitute(data))),
                         alphalevel = alphalevel,
                         timeseq = timeseq)
        if (length(extras)>0)
          {
            calllist <- c(as.list(calllist), extras)
            calllist <- as.call(calllist)
          }
        z <- eval(calllist, parent.frame())
      }
    else
      z <- gvlma.lm(x, alphalevel, timeseq)
    z$GlobalTest$call <- mc
    z
  }
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.