Nothing
is.squid <- is_squid <- function(x) {
if (all(is.na(x)) || is.null(x)) {
return(x);
}
if (inherits(x, "squids")) {
return(TRUE);
} else {
if (is.character(x)) {
if (all(nchar(x) == 8)) {
return(
all(is_base30(x))
);
} else {
return(FALSE);
}
} else {
return(FALSE);
}
}
}
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.