ng2-trim-directive
v2.3.4
Published
[](https://travis-ci.org/anein/angular2-trim-directive) [](https://www.npmjs.com/package/ng2-trim-directive)
Maintainers
Readme
ng2-trim-directive
The directive trims whitespaces from the end of an input text value.
Demo
Play with the directive here https://anein.github.io/angular2-trim-directive/.
Usage
- Install
ng2-trim-directive.
npm i ng2-trim-directiveor using Yarn
yarn add ng2-trim-directive- Import
InputTrimModuleto your Angular module.
import { InputTrimModule } from 'ng2-trim-directive';
@NgModule({
imports: [
...
InputTrimModule,
...
],
...- Add the "trim" attribute to a text input or textarea element.
<input type="text" trim />
<textarea ... trim ></textarea>or with an option: trim value only on the blur event.
<input type="text" trim="blur" />
<textarea ... trim="blur" ></textarea>note: if you use the directive with without setting the blur event, it will behave like the text input element.
Good luck.
