Checks if the given value is a space character. Checks for horizontal tab (9), line feed (10), vertical tab (11), form feed (12), carriage return (13) and space (32).
isSpace(' '); // true isSpace('a'); // false isSpace('foo'); // false
The value to check.
Whether the value is a space character.
Generated using TypeDoc
Checks if the given value is a space character. Checks for horizontal tab (9), line feed (10), vertical tab (11), form feed (12), carriage return (13) and space (32).
isSpace(' '); // true isSpace('a'); // false isSpace('foo'); // false