effect 3.19.8 → 3.19.9

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.
@@ -4520,7 +4520,7 @@ function set(value) {
4520
4520
  }
4521
4521
  const bigDecimalPretty = () => val => `BigDecimal(${bigDecimal_.format(bigDecimal_.normalize(val))})`;
4522
4522
  const bigDecimalArbitrary = () => fc => fc.tuple(fc.bigInt(), fc.integer({
4523
- min: 0,
4523
+ min: -18,
4524
4524
  max: 18
4525
4525
  })).map(([value, scale]) => bigDecimal_.make(value, scale));
4526
4526
  /**