UNPKG

203 BJavaScriptView Raw
1'use strict';
2
3/**
4 * Check if a character is whitespace.
5 *
6 * @param {string} char
7 * @returns {boolean}
8 */
9module.exports = function (char) {
10 return [' ', '\n', '\t', '\r', '\f'].includes(char);
11};