Skip to content

Instantly share code, notes, and snippets.

@Mustafa-Omran
Created March 14, 2022 09:16
Show Gist options
  • Save Mustafa-Omran/8f96008e6a7099de7b26e5163e83aa1a to your computer and use it in GitHub Desktop.
Save Mustafa-Omran/8f96008e6a7099de7b26e5163e83aa1a to your computer and use it in GitHub Desktop.
Angular - No white spaces
import { FormControl } from "@angular/forms";
export function noWhitespaceValidator(control: FormControl) {
const isWhitespace = (control.value || '').trim().length === 0;
const isValid = !isWhitespace;
return isValid ? null : { 'whitespace': true };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment