effect@3.5.4
·
1933 commits
to main
since this release
Patch Changes
-
#3253
ed0dde4Thanks @tim-smart! - update dependencies -
#3247
ca775ceThanks @tim-smart! - if performance.timeOrigin is 0, use performance.now() directly in ClockThis is a workaround for cloudflare, where performance.now() cannot be used in
the global scope to calculate the origin. -
#3250
203658fThanks @gcanti! - add support forRefinements toPredicate.or, closes #3243import { Predicate } from "effect"; // Refinement<unknown, string | number> const isStringOrNumber = Predicate.or(Predicate.isString, Predicate.isNumber);
-
#3246
eb1c4d4Thanks @tim-smart! - render nested causes in Cause.pretty