(idStr)
| 75 | * as a string. |
| 76 | */ |
| 77 | function parseWildcardId(idStr) { |
| 78 | return map( |
| 79 | val => (Array.isArray(val) && wildcards[val[0]]) || val, |
| 80 | JSON.parse(idStr) |
| 81 | ); |
| 82 | } |
| 83 | |
| 84 | /* |
| 85 | * If this update is for multiple outputs, then it has |
no test coverage detected
searching dependent graphs…