remove whitespace Directives
These directives don't allow the white spaces into the input field when the user adds it.
Save these directives and name it as remove spaces
@HostListener('keyup', ['$event']) onKeyUp(event) {
let value = this. eleRef.nativeElement.value;
value = this. functionCall(value);
this. eleRef.nativeElement.value = value;
}
functionCall(value) {
value = _.replace(value, /^\s/g, '');
return value;
}
1 Comments
_ means??
ReplyDelete