(data)
| 347 | } |
| 348 | } |
| 349 | function isArrayLike(data) { |
| 350 | if (!data) { |
| 351 | return false; |
| 352 | } |
| 353 | if (typeof data === 'string') { |
| 354 | return false; |
| 355 | } |
| 356 | return typeof data.length === 'number'; |
| 357 | } |
| 358 | function each(arr, cb, context) { |
| 359 | if (!(arr && cb)) { |
| 360 | return; |
no outgoing calls
no test coverage detected
searching dependent graphs…