You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -59,21 +59,21 @@ var GENERIC_DTYPE = 'generic';
59
59
functionmskmin(x,mask){
60
60
vardt;
61
61
if(!isCollection(x)){
62
-
thrownewTypeError(format('invalid argument. First argument must be an array-like object. Value: `%s`.',x));
62
+
thrownewTypeError(format('null2O',x));
63
63
}
64
64
dt=dtype(x)||GENERIC_DTYPE;
65
65
if(!contains(IDTYPES,dt)){
66
66
thrownewTypeError(format('invalid argument. First argument must have one of the following data types: "%s". Data type: `%s`.',join(IDTYPES,'", "'),dt));
67
67
}
68
68
if(!isCollection(mask)){
69
-
thrownewTypeError(format('invalid argument. Second argument must be an array-like object. Value: `%s`.',mask));
69
+
thrownewTypeError(format('null2y',mask));
70
70
}
71
71
dt=dtype(mask)||GENERIC_DTYPE;
72
72
if(!contains(IDTYPES,dt)){
73
73
thrownewTypeError(format('invalid argument. Second argument must have one of the following data types: "%s". Data type: `%s`.',join(IDTYPES,'", "'),dt));
74
74
}
75
75
if(x.length!==mask.length){
76
-
thrownewRangeError(format('invalid arguments. First and second arguments must have the same length.'));
0 commit comments