MCPcopy Create free account
hub / github.com/angular/dev-infra / onComplete

Function onComplete

github-actions/saucelabs/set-saucelabs-env.js:14852–14861  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

14850 if (coding === "x-gzip" || coding === "gzip") {
14851 decoders.push(zlib.createGunzip({
14852 // Be less strict when decoding compressed responses, since sometimes
14853 // servers send slightly invalid responses that are still accepted
14854 // by common browsers.
14855 // Always using Z_SYNC_FLUSH is what cURL does.
14856 flush: zlib.constants.Z_SYNC_FLUSH,
14857 finishFlush: zlib.constants.Z_SYNC_FLUSH
14858 }));
14859 } else if (coding === "deflate") {
14860 decoders.push(createInflate({
14861 flush: zlib.constants.Z_SYNC_FLUSH,
14862 finishFlush: zlib.constants.Z_SYNC_FLUSH
14863 }));
14864 } else if (coding === "br") {

Callers

nothing calls this directly

Calls 2

offMethod · 0.45
pushMethod · 0.45

Tested by

no test coverage detected