Equivalent of req but with a logicial output

Hi

Is there a function that performs similarly to shiny::req but instead of stopping the execution of the reactive it would return a logical value?

Thanks

probably isTruthy() ?

Thanks for the pointer @nirgrahamuk

I guess I'll try to use something like:

notTruthy <- function(...){

  !all(sapply( list(...), shiny::isTruthy ))

}


This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.