()
| 30 | } |
| 31 | |
| 32 | componentWillUnmount () { |
| 33 | if (this.options.handleAppState) { |
| 34 | AppState.removeEventListener('change', this.handleState); |
| 35 | } |
| 36 | NetInfo.removeEventListener('connectionChange', this._onNetworkChange); |
| 37 | } |
| 38 | |
| 39 | get resumeDelayElapsed () { |
| 40 | return this._inactiveTime + this.options.onResumeDelay <= Date.now(); |
nothing calls this directly
no outgoing calls
no test coverage detected