(point, collection, index)
| 2772 | return item.value !== null; |
| 2773 | }, |
| 2774 | nextPoint = function(point, collection, index){ |
| 2775 | return helpers.findNextWhere(collection, hasValue, index) || point; |
| 2776 | }, |
| 2777 | previousPoint = function(point, collection, index){ |
| 2778 | return helpers.findPreviousWhere(collection, hasValue, index) || point; |
| 2779 | }; |