Sign in
chromium
/
devtools
/
devtools-frontend
/
5dfb21679dc5d9affc8a50122a3e245ff69f1d08
/
.
/
node_modules
/
stylelint
/
lib
/
utils
/
isWhitespace.mjs
blob: 9f09f933f5323da1fe0cc6c77d269f1ff5106e1f [
file
]
/**
* Check if a character is whitespace.
*
* @param {string} char
* @returns {boolean}
*/
export
default
function
isWhitespace
(
char
)
{
return
[
' '
,
'\n'
,
'\t'
,
'\r'
,
'\f'
].
includes
(
char
);
}