R/utils.R

Defines functions `%||%`

#' @importFrom httr add_headers POST status_code content
#' @importFrom jsonlite fromJSON toJSON
#' @importFrom readr read_csv
NULL

`%||%` <- function(x, y) if (is.null(x)) y else x

utils::globalVariables(c(".", ".providers"))

Try the llmjoin package in your browser

Any scripts or data that you put into this service are public.

llmjoin documentation built on June 17, 2026, 1:08 a.m.