(outputIdAndProp)
| 88 | * "..output-1.value...output-2.value...output-3.value...output-4.value.." |
| 89 | */ |
| 90 | function parseMultipleOutputs(outputIdAndProp) { |
| 91 | return outputIdAndProp.substr(2, outputIdAndProp.length - 4).split('...'); |
| 92 | } |
| 93 | |
| 94 | export function splitIdAndProp(idAndProp) { |
| 95 | // since wildcard ids can have . in them but props can't, |
no outgoing calls
no test coverage detected
searching dependent graphs…