({id})
| 1074 | * string IDs do not; wildcard IDs only do if they contain ALL or ALLSMALLER |
| 1075 | */ |
| 1076 | export function isMultiValued({id}) { |
| 1077 | return typeof id === 'object' && any(v => v.multi, values(id)); |
| 1078 | } |
| 1079 | |
| 1080 | /* |
| 1081 | * For a given output id and prop, find the callback generating it. |
no test coverage detected
searching dependent graphs…