File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 168
168
2
169
169
]
170
170
},
171
+ {
172
+ "uuid" : " c6cf26de-8ccd-4410-84bd-b9efd88fd2bc" ,
173
+ "description" : " consecutive null values at the front of the list are omitted from the final result" ,
174
+ "property" : " flatten" ,
175
+ "input" : {
176
+ "array" : [
177
+ null ,
178
+ null ,
179
+ 3
180
+ ]
181
+ },
182
+ "expected" : [
183
+ 3
184
+ ]
185
+ },
186
+ {
187
+ "uuid" : " 382c5242-587e-4577-b8ce-a5fb51e385a1" ,
188
+ "description" : " consecutive null values in the middle of the list are omitted from the final result" ,
189
+ "property" : " flatten" ,
190
+ "input" : {
191
+ "array" : [
192
+ 1 ,
193
+ null ,
194
+ null ,
195
+ 4
196
+ ]
197
+ },
198
+ "expected" : [
199
+ 1 ,
200
+ 4
201
+ ]
202
+ },
171
203
{
172
204
"uuid" : " ef1d4790-1b1e-4939-a179-51ace0829dbd" ,
173
205
"description" : " 6 level nest list with null values" ,
You can’t perform that action at this time.
0 commit comments