/**
* Test a string for all white space characters
*
* @param input string to test
* @return true, if all characters in the string are white space
*/exportfunctionisWhitespace(input: string): boolean {
return/^\s+$/u.test(input);
}
exportdefault isWhitespace;