R/onLoad.R

Defines functions .onAttach

.onAttach <- function(libname, pkg){
  ver <- version()
  packageStartupMessage(paste("Using V8 engine", ver))
  if(isTRUE(v8_version_numeric() < "6")){
    warning("This system has a very old version of libv8. Some packages may not work.", call. = FALSE)
  }
}
jeroenooms/V8 documentation built on Aug. 25, 2024, 9:40 p.m.