(parent: string, child: string)
| 677 | const prefix = key.slice(0, starIndex) |
| 678 | const suffix = key.slice(starIndex + 1) |
| 679 | if (!subpath.startsWith(prefix) || !subpath.endsWith(suffix)) { |
| 680 | continue |
| 681 | } |
| 682 | matches.push({ |
| 683 | key, |
| 684 | value, |
| 685 | star: subpath.slice(prefix.length, subpath.length - suffix.length), |
no outgoing calls
no test coverage detected
searching dependent graphs…