Aliases: env_is_user_facing
Keywords:
### ** Examples fn <- function() { env_is_user_facing(caller_env()) } # Direct call of `fn()` from the global env with(global_env(), fn())
Error in fn(): could not find function "fn"
# Indirect call of `fn()` from a package with(ns_env("utils"), fn())
Error in fn(): could not find function "fn"