@pingux/astro 1.31.0-alpha.2 → 1.31.0-alpha.3
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.
@@ -994,7 +994,6 @@ describe('Sortable DataTable with useAsyncList', function () {
|
|
994
994
|
var first = a[sortDescriptor.column];
|
995
995
|
var second = b[sortDescriptor.column]; // eslint-disable-next-line radix
|
996
996
|
|
997
|
-
// eslint-disable-next-line radix
|
998
997
|
var cmp = ((0, _parseInt2["default"])(first) || first) < ((0, _parseInt2["default"])(second) || second) ? -1 : 1;
|
999
998
|
|
1000
999
|
if (sortDescriptor.direction === 'descending') {
|
@@ -1190,7 +1189,6 @@ describe('Sortable DataTable with useAsyncList', function () {
|
|
1190
1189
|
var first = a[sortDescriptor.column];
|
1191
1190
|
var second = b[sortDescriptor.column]; // eslint-disable-next-line radix
|
1192
1191
|
|
1193
|
-
// eslint-disable-next-line radix
|
1194
1192
|
var cmp = ((0, _parseInt2["default"])(first) || first) < ((0, _parseInt2["default"])(second) || second) ? -1 : 1;
|
1195
1193
|
|
1196
1194
|
if (sortDescriptor.direction === 'descending') {
|
@@ -943,7 +943,6 @@ describe('Sortable DataTable with useAsyncList', function () {
|
|
943
943
|
var first = a[sortDescriptor.column];
|
944
944
|
var second = b[sortDescriptor.column]; // eslint-disable-next-line radix
|
945
945
|
|
946
|
-
// eslint-disable-next-line radix
|
947
946
|
var cmp = (_parseInt(first) || first) < (_parseInt(second) || second) ? -1 : 1;
|
948
947
|
|
949
948
|
if (sortDescriptor.direction === 'descending') {
|
@@ -1139,7 +1138,6 @@ describe('Sortable DataTable with useAsyncList', function () {
|
|
1139
1138
|
var first = a[sortDescriptor.column];
|
1140
1139
|
var second = b[sortDescriptor.column]; // eslint-disable-next-line radix
|
1141
1140
|
|
1142
|
-
// eslint-disable-next-line radix
|
1143
1141
|
var cmp = (_parseInt(first) || first) < (_parseInt(second) || second) ? -1 : 1;
|
1144
1142
|
|
1145
1143
|
if (sortDescriptor.direction === 'descending') {
|