(fetch, xhr, e)
| 807 | dbg(`fetch: operation success. Caching result.. e: ${e}`); |
| 808 | #endif |
| 809 | var storeSuccess = (fetch, xhr, e) => { |
| 810 | #if FETCH_DEBUG |
| 811 | dbg('fetch: IndexedDB store succeeded.'); |
| 812 | #endif |
| 813 | {{{ runtimeKeepalivePop() }}} |
| 814 | doCallback(() => { |
| 815 | if (onsuccess) {{{ makeDynCall('vp', 'onsuccess') }}}(fetch); |
| 816 | else successcb?.(fetch); |
| 817 | }); |
| 818 | }; |
| 819 | var storeError = (fetch, xhr, e) => { |
| 820 | #if FETCH_DEBUG |
| 821 | dbg('fetch: IndexedDB store failed.'); |
nothing calls this directly
no test coverage detected