Javascript – How to provide pipes in services in Angular 17 with no NgModule
I am trying to use titleCasePipe in my angular service, I don't have NgModule and using the new ApplicationConfig way. @Injectable({ providedIn: 'root' }) export class NameGeneratorService { // private titleCasePipe = inject(TitleCasePipe) constructor(private titleCasePipe: TitleCasePipe) { } I tied…