We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4a3aba commit 2d504adCopy full SHA for 2d504ad
DESCRIPTION
@@ -12,7 +12,7 @@ License: MIT + file LICENSE
12
URL: https://github.com/pharmaR/riskreports, https://pharmar.github.io/riskreports/
13
BugReports: https://github.com/pharmaR/riskreports/issues
14
Depends:
15
- R (>= 4.4.0)
+ R (>= 4.3.0)
16
Imports:
17
methods,
18
htmltools,
R/utils.R
@@ -18,6 +18,9 @@ fill_in <- function(list, names) {
list
19
}
20
21
+`%||%` <- function (x, y) {
22
+ if (is.null(x)) y else x
23
+}
24
25
output_dir <- function() {
26
opt <- getOption("riskreports_output_dir", default = NULL)
0 commit comments