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.
@@ -362,7 +362,7 @@ var matchUpFormatCode = {
362
362
  };
363
363
 
364
364
  function factoryVersion() {
365
- return '1.6.21';
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 && typeof scaleValue !== 'number')
60531
+ if (!scaleSortMethod && (isNaN(scaleValue) || !parseFloat(scaleValue)))
60532
60532
  return false;
60533
60533
  return scaleValue;
60534
60534
  })