(key)
| 192 | } |
| 193 | |
| 194 | getDelay(key) { |
| 195 | const { delay } = this.props; |
| 196 | if (typeof delay === 'object') { |
| 197 | return isNaN(delay[key]) ? DEFAULT_DELAYS[key] : delay[key]; |
| 198 | } |
| 199 | return delay; |
| 200 | } |
| 201 | |
| 202 | getCurrentTarget(target) { |
| 203 | if (!target) return null; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…