#' Find the operating system or architecture.
#'
#' Indicate whether we are on Windows or MacOSX.
#' For MacOSX and Linux, we can also determine if we are on an x86-64 or Arm-based architecture.
#'
#' @return Logical scalar indicating whether we are on the specified OS and/or architecture.
#'
#' @author Aaron Lun
#'
#' @examples
#' isWindows()
#' isMacOSX()
#' isLinux()
#' @export
isWindows <- function() {
.Platform$OS.type=="windows"
}
#' @export
#' @rdname isWindows
isMacOSX <- function() {
Sys.info()[["sysname"]] == "Darwin"
}
#' @export
#' @rdname isWindows
isMacOSXArm <- function() {
isMacOSX() && grepl("^arm", Sys.info()[["machine"]])
}
#' @export
#' @rdname isWindows
isLinux <- function() {
Sys.info()[["sysname"]] == "Linux"
}
#' @export
#' @rdname isWindows
isLinuxAarch64 <- function() {
isLinux() && Sys.info()[["machine"]] == "aarch64"
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.