@nestrx/inflector
v0.0.4
Published
Helper inflector for NestJs framework.
Readme
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) {
}
...