* Constructs a new point selection definition object.
(pointNumber, searchInfo, subtract)
| 575 | * Constructs a new point selection definition object. |
| 576 | */ |
| 577 | function newPointSelectionDef(pointNumber, searchInfo, subtract) { |
| 578 | return { |
| 579 | pointNumber: pointNumber, |
| 580 | searchInfo: searchInfo, |
| 581 | subtract: !!subtract |
| 582 | }; |
| 583 | } |
| 584 | |
| 585 | function isPointSelectionDef(o) { |
| 586 | return 'pointNumber' in o && 'searchInfo' in o; |
no outgoing calls
no test coverage detected
searching dependent graphs…