Что вообще с фреймворком? Он развивается?
Если да то в какую сторону и что слышно про Vue 4?
Про React знаю, но интересуют именно Vue и ему подобные фреймворки
import { CallHandler, ExecutionContext, Injectable, NestInterceptor } from '@nestjs/common';
import { Observable } from 'rxjs';
import { Response as ExpressResponse } from 'express';
@Injectable()
export class ResponseAddContentRangeToHeaderInterceptor implements NestInterceptor {
intercept(context:ExecutionContext, next:CallHandler): Observable<any> {
const ResponseObj:ExpressResponse = context.switchToHttp().getResponse();
ResponseObj.setHeader('Access-Control-Expose-Headers', 'Content-Range' );
return next.handle();
}
}
async function bootstrap() {
const app = await NestFactory.create(AppModule);
app.useGlobalInterceptors(new ResponseAddContentRangeToHeaderInterceptor());
await app.listen(8080);
}
[[1,2], ['a','b']].flat(); // [1, 2, 'a', 'b']
[[1,2], ['a','b']].flat(2); // [1, 2, 'a', 'b']
[[1,2, ['a', ['a', ['a','b'],'b'],'b']], ['a','b']].flat(Infinity); // [1, 2, 'a', 'a', 'a', 'b', 'b', 'b', 'a', 'b']