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

Function addTagToRequest

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

Source from the content-addressed store, hash-verified

658}
659
660function addTagToRequest(req: HttpRequest<unknown>, tag: string): HttpRequest<unknown> {
661 const prevTagHeader = req.headers.get('X-Tag') ?? '';
662 const tagHeader = prevTagHeader.length > 0 ? prevTagHeader + ',' + tag : tag;
663
664 return req.clone({
665 setHeaders: {
666 'X-Tag': tagHeader,
667 },
668 });
669}
670
671const FAKE_JSONP_BACKEND_PROVIDER = {
672 provide: JsonpClientBackend,

Callers 3

interceptMethod · 0.85

Calls 2

getMethod · 0.65
cloneMethod · 0.65

Tested by

no test coverage detected