@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 +1 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3368,6 +3368,7 @@ var Analysis = class {
|
|
|
3368
3368
|
properties: data.properties,
|
|
3369
3369
|
count: data.count,
|
|
3370
3370
|
hitRateString: `1 in ${Math.round(hitRate).toLocaleString()}`,
|
|
3371
|
+
hitRatePercentage: round(1 / hitRate * 100, 4),
|
|
3371
3372
|
hitRate
|
|
3372
3373
|
};
|
|
3373
3374
|
}).sort((a, b) => a.hitRate - b.hitRate);
|