0.0.4 • Published 6 years ago
@nestrx/inflector v0.0.4
Inflector
Inflector helper module for NestJS framework.
Installation
npm:
npm i @nestrx/inflectoryan
yan add @nestrx/inflectorConfigure
app.module.ts
...
@Module({
...
imports: [
...
InflectorModule,
...
],
...
})
...Usage
your.service.ts
...
@Injectable()
export class YourService {
constructor(private injector: InflectorService) {
}
...