(facetAddress, facets)
| 69 | |
| 70 | // find a particular address position in the return value of diamondLoupeFacet.facets() |
| 71 | function findAddressPositionInFacets(facetAddress, facets) { |
| 72 | for (let i = 0; i < facets.length; i++) { |
| 73 | if (facets[i].facetAddress === facetAddress) { |
| 74 | return i |
| 75 | } |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | exports.getSelectors = getSelectors |
| 80 | exports.getSelector = getSelector |
nothing calls this directly
no outgoing calls
no test coverage detected