(f)
| 748 | var fetchAttrSynchronous = !!(fetchAttributes & {{{ cDefs.EMSCRIPTEN_FETCH_SYNCHRONOUS }}}); |
| 749 | |
| 750 | function doCallback(f) { |
| 751 | if (fetchAttrSynchronous) { |
| 752 | f(); |
| 753 | } else { |
| 754 | callUserCallback(f); |
| 755 | } |
| 756 | } |
| 757 | |
| 758 | var reportSuccess = (fetch, xhr, e) => { |
| 759 | #if FETCH_DEBUG |
no test coverage detected