We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
val == NaN
1 parent dbf3e7e commit 6d7a0e1Copy full SHA for 6d7a0e1
1 file changed
dist/core/generic.js
@@ -238,9 +238,7 @@ class NDframe {
238
239
if (this.series) {
240
this.values.map(val => {
241
- if (val == NaN) {
242
- new_arr.push(true);
243
- } else if (isNaN(val) && typeof val != "string") {
+ if (isNaN(val) && typeof val != "string") {
244
new_arr.push(true);
245
} else {
246
new_arr.push(false);
@@ -251,9 +249,7 @@ class NDframe {
251
249
row_data.map(arr => {
252
250
let temp_arr = [];
253
arr.map(val => {
254
255
- temp_arr.push(true);
256
257
temp_arr.push(true);
258
259
temp_arr.push(false);
@@ -396,4 +392,4 @@ class NDframe {
396
392
397
393
}
398
394
399
-exports.default = NDframe;
395
+exports.default = NDframe;
0 commit comments