#' @export
get_environment <- function(object, ...) {
UseMethod("get_environment")
}
#' @export
get_environment.instrumentr_context <- function(object, ...) { # nolint
.Call(C_context_get_environment, object)
}
#' @export
get_environment.instrumentr_application <- function(object, ...) { # nolint
.Call(C_application_get_environment, object)
}
#' @export
get_environment.instrumentr_package <- function(object, ...) { # nolint
.Call(C_package_get_environment, object)
}
#' @export
get_environment.instrumentr_call <- function(object, ...) { # nolint
.Call(C_call_get_environment, object)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.