()
| 12 | req = null, |
| 13 | |
| 14 | pinky = function () { |
| 15 | req = refetch.get(src, data, options); |
| 16 | promises.forEach((p) => { |
| 17 | req[p]((res) => { |
| 18 | stacks[p].forEach((func) => { |
| 19 | func(res); |
| 20 | }); |
| 21 | }); |
| 22 | }); |
| 23 | return pinky; |
| 24 | }; |
| 25 | |
| 26 | promises.forEach((p) => { |
| 27 | pinky[p] = (func) => { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…