UNPKG

ngx-lower-case-directive

Version:

This directive helps to convert an input text value to lower case.

11 lines (9 loc) 263 B
import { NgModule } from '@angular/core'; import { NgxLowerCaseDirective } from './ngx-lower-case.directive'; @NgModule({ imports: [], declarations: [NgxLowerCaseDirective], exports: [NgxLowerCaseDirective], }) export class NgxLowerCaseDirectiveModule { }