NestJS - Interceptors
What is wrong with this interceptor code that tries to transform the response?
intercept(context, next) {
next.handle().pipe(map(data => data.trim()));
}