MCPcopy Create free account
hub / github.com/angular/angular / addTagToRequest

Function addTagToRequest

packages/common/http/test/provider_spec.ts:673–682  ·  view source on GitHub ↗
(req: HttpRequest<unknown>, tag: string)

Source from the content-addressed store, hash-verified

671}
672
673function addTagToRequest(req: HttpRequest<unknown>, tag: string): HttpRequest<unknown> {
674 const prevTagHeader = req.headers.get('X-Tag') ?? '';
675 const tagHeader = prevTagHeader.length > 0 ? prevTagHeader + ',' + tag : tag;
676
677 return req.clone({
678 setHeaders: {
679 'X-Tag': tagHeader,
680 },
681 });
682}
683
684const FAKE_JSONP_BACKEND_PROVIDER = {
685 provide: JsonpClientBackend,

Callers 3

interceptMethod · 0.85

Calls 2

getMethod · 0.65
cloneMethod · 0.65

Tested by

no test coverage detected