isWhiteSpace top-level property

Function isWhiteSpace
getter/setter pair

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);
};