0.0.4 • Published 5 years ago

@nestrx/inflector v0.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Inflector

Inflector helper module for NestJS framework.

Installation

npm:

npm i @nestrx/inflector

yan

yan add @nestrx/inflector

Configure

app.module.ts

...
@Module({
	...
	imports: [
		...
		InflectorModule,
		...
	],
	...
})
...

Usage

your.service.ts

...
@Injectable()
export class YourService {
  constructor(private injector: InflectorService) {
  }
...