effect 3.19.11 → 3.19.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -40,7 +40,7 @@ export const globalClockScheduler: Clock.ClockScheduler = {
40
40
 
41
41
  const performanceNowNanos = (function() {
42
42
  const bigint1e6 = BigInt(1_000_000)
43
- if (typeof performance === "undefined") {
43
+ if (typeof performance === "undefined" || typeof performance.now !== "function") {
44
44
  return () => BigInt(Date.now()) * bigint1e6
45
45
  }
46
46
  let origin: bigint
@@ -1,4 +1,4 @@
1
- let moduleVersion = "3.19.11"
1
+ let moduleVersion = "3.19.13"
2
2
 
3
3
  export const getCurrentVersion = () => moduleVersion
4
4