(v)
| 244 | }; |
| 245 | const received = []; |
| 246 | const predicate = (v) => { received.push(v); return false; }; |
| 247 | const found = Array.prototype.find.call(obj, predicate); |
| 248 | assertEquals(undefined, found); |
| 249 | assertArrayEquals([0, undefined, 2], received); |
no test coverage detected