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
First for all, thanks for awesome library! It's damn quick and very flexible.
I have a suggestion though. I think taoensso.tempura.impl/vargs should be customizable via params, like resource-compiler.
Reason is custom resource compiler params are passed through vargs, which strips everything to vector. So supporting something like MessageFormat is not easy, because it works with map.
Of course, it's possible to workaround this by wrapping map into vector, like
(tr:message-format [{:fruit"Apple":amount2}])
and making a check inside of custom resource compiler, but that's a bit hack-ish.
The text was updated successfully, but these errors were encountered:
First for all, thanks for awesome library! It's damn quick and very flexible.
I have a suggestion though. I think
taoensso.tempura.impl/vargs
should be customizable via params, likeresource-compiler
.Reason is custom resource compiler params are passed through
vargs
, which strips everything to vector. So supporting something like MessageFormat is not easy, because it works with map.Of course, it's possible to workaround this by wrapping map into vector, like
and making a check inside of custom resource compiler, but that's a bit hack-ish.
The text was updated successfully, but these errors were encountered: