isWhiteSpace top-level property
Check if a char is whitespace char @param {string} c a single char
Implementation
Function isWhiteSpace = (c) {
RegExp _reg = RegExp("\s");
return _reg.hasMatch(c);
};
Check if a char is whitespace char @param {string} c a single char
Function isWhiteSpace = (c) {
RegExp _reg = RegExp("\s");
return _reg.hasMatch(c);
};