12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
|
'use strict';
|
||
|
|
||
|
/**
|
||
|
* Check if a character is whitespace.
|
||
|
*
|
||
|
* @param {string} char
|
||
|
* @returns {boolean}
|
||
|
*/
|
||
|
module.exports = function isWhitespace(char) {
|
||
|
return [' ', '\n', '\t', '\r', '\f'].includes(char);
|
||
|
};
|