@slot-engine/core 0.2.7 → 0.2.8

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.
package/dist/index.js CHANGED
@@ -3417,6 +3417,7 @@ var Analysis = class {
3417
3417
  properties: data.properties,
3418
3418
  count: data.count,
3419
3419
  hitRateString: `1 in ${Math.round(hitRate).toLocaleString()}`,
3420
+ hitRatePercentage: round(1 / hitRate * 100, 4),
3420
3421
  hitRate
3421
3422
  };
3422
3423
  }).sort((a, b) => a.hitRate - b.hitRate);