Nothing
#' Check if given object has certain attributes.
#'
#' @param obj [mixed]\cr
#' Arbitrary R object.
#' @param attribute.names [\code{character}]\cr
#' Vector of strings, i.e., attribute names.
#' @return [\code{logical(1)}]
#' \code{TRUE} if object \code{x} contains all attributes from \code{attributeNames}
#' and \code{FALSE} otherwise.
#' @export
hasAttributes = function(obj, attribute.names) {
isSubset(attribute.names, getAttributeNames(obj))
}
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.