Angular - HTTP Client
Given this interceptor code snippet, what will be the value of the 'Authorization' header in the outgoing request?
intercept(req, next) {
const cloned = req.clone({
setHeaders: { Authorization: 'Bearer token123' }
});
return next.handle(cloned);
}