Nothing
#' Determine whether to inform about unspecified fields in spec
#'
#' Wrapper around `getOption("tibblify.show_unspecified")` to return `TRUE`
#' unless the option is explicitly set to `FALSE`.
#'
#' @returns `FALSE` if the option is set to `FALSE`, `TRUE` otherwise.
#' @export
#' @examples
#' should_inform_unspecified()
should_inform_unspecified <- function() {
!rlang::is_false(getOption("tibblify.show_unspecified"))
}
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.