You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The then() function gives an error when a non-functionable object is passed to it:
promise_resolve("start") %>%
then("then") %>%
then(function(value) { message(value) })
#> Unhandled promise error: Don't know how to convert object of class character into a promise
However the $then() method doesn't give an error. I'm not sure what it's doing:
The
then()
function gives an error when a non-functionable object is passed to it:However the
$then()
method doesn't give an error. I'm not sure what it's doing:The text was updated successfully, but these errors were encountered: