Skip to contents

Retrieves a package configuration key's default value from the package's funky configuration data (column default_value or default_value_dynamic of <pkg>:::funky_config). If no default value is specified (NULL), nothing is returned (NULL).

Usage

config_val_default(
  key,
  pkg = utils::packageName(env = parent.frame()),
  env = parent.frame()
)

Arguments

key

Configuration key name. A character scalar.

pkg

R package name. A character scalar. Defaults to the name of the calling package.

env

Environment to evaluate default_value_dynamic in, if necessary.

Value

pkgsnip::return_lbl("r_obj")

See also

Other package configuration value functions: config_val(), has_config_val()

Examples

try(
  funky::config_val_default(key = "gen_pkgdown_ref",
                            pkg = "pkgpurl")
)
#> [1] TRUE