tods-competition-factory 1.6.21 → 1.6.22
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/forge/generate.mjs +1 -1
- package/dist/forge/generate.mjs.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/tods-competition-factory.development.cjs.js +2 -2
- package/dist/tods-competition-factory.development.cjs.js.map +1 -1
- package/dist/tods-competition-factory.production.cjs.min.js +1 -1
- package/dist/tods-competition-factory.production.cjs.min.js.map +1 -1
- package/package.json +2 -2
|
@@ -362,7 +362,7 @@ var matchUpFormatCode = {
|
|
|
362
362
|
};
|
|
363
363
|
|
|
364
364
|
function factoryVersion() {
|
|
365
|
-
return '1.6.
|
|
365
|
+
return '1.6.22';
|
|
366
366
|
}
|
|
367
367
|
|
|
368
368
|
/******************************************************************************
|
|
@@ -60528,7 +60528,7 @@ function getScaledEntries(_a) {
|
|
|
60528
60528
|
.filter(function (scaledEntry) {
|
|
60529
60529
|
var scaleValue = scaledEntry.scaleValue;
|
|
60530
60530
|
// if a custom sort method is not provided, filter out entries with non-float values
|
|
60531
|
-
if (!scaleSortMethod && scaleValue
|
|
60531
|
+
if (!scaleSortMethod && (isNaN(scaleValue) || !parseFloat(scaleValue)))
|
|
60532
60532
|
return false;
|
|
60533
60533
|
return scaleValue;
|
|
60534
60534
|
})
|