* See `Values.scan()` method. * * @param {ContextNode} contextNode * @param {IContextProp<?, ?>} prop * @return {boolean}
(contextNode, prop)
| 650 | * @return {boolean} |
| 651 | */ |
| 652 | function scan(contextNode, prop) { |
| 653 | // @ts-ignore private access |
| 654 | return contextNode.values.scan(prop); |
| 655 | } |
| 656 | |
| 657 | /** |
| 658 | * See `Values.scanAll()` method. |