Inflector helper module for NestJS framework.
npm:
npm i @nestrx/inflectoryan
yan add @nestrx/inflectorapp.module.ts
...
@Module({
...
imports: [
...
InflectorModule,
...
],
...
})
...your.service.ts
...
@Injectable()
export class YourService {
constructor(private injector: InflectorService) {
}
...