svelteplot 0.14.1-pr-549.1 → 0.14.1-pr-549.2
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.
|
@@ -137,9 +137,7 @@
|
|
|
137
137
|
// Scan for the first row that resolves to a non-null independent value — checking only
|
|
138
138
|
// filteredData[0] would give false negatives when the leading row has a missing/null value.
|
|
139
139
|
const independentIsDate = $derived(
|
|
140
|
-
filteredData.some(
|
|
141
|
-
(d) => resolveChannel(independent, d, options as any) instanceof Date
|
|
142
|
-
)
|
|
140
|
+
filteredData.some((d) => resolveChannel(independent, d, options as any) instanceof Date)
|
|
143
141
|
);
|
|
144
142
|
|
|
145
143
|
// Build a clean numeric input set for regression fitting, dropping invalid rows early.
|