Open chainsawriot opened 6 months ago
Ref
AFAIK, there is no way to bust or isolate unevaluated promises at the R level without evaluating them. If save(eval.promises = FALSE) is by design, it would be also possible to make it by design load(remove.promises = FALSE).
save(eval.promises = FALSE)
load(remove.promises = FALSE)
For reference/comparison qs (dev version at moment) is now replacing promises with NULL: https://github.com/traversc/qs/issues/93#issuecomment-2089733765
Ivan Krylov's reply and unserializeData.
Ref
AFAIK, there is no way to bust or isolate unevaluated promises at the R level without evaluating them. If
save(eval.promises = FALSE)
is by design, it would be also possible to make it by designload(remove.promises = FALSE)
.