* Whether the property is recursive. * * @param {IContextProp<?, ?>} prop * @return {boolean}
(prop)
| 685 | * @return {boolean} |
| 686 | */ |
| 687 | function isRecursive(prop) { |
| 688 | // Only `false` values make a value non-recursive. `true` and |
| 689 | // `function` values are considered recursive. |
| 690 | return !!prop.recursive; |
| 691 | } |
| 692 | |
| 693 | /** |
| 694 | * Whether the parent value is required to calculate the used value. |
no outgoing calls
no test coverage detected